diff --git a/Content.Client/Options/UI/Tabs/ExtraTab.xaml b/Content.Client/Options/UI/Tabs/ExtraTab.xaml
index 19348d4d4f..fa995d2455 100644
--- a/Content.Client/Options/UI/Tabs/ExtraTab.xaml
+++ b/Content.Client/Options/UI/Tabs/ExtraTab.xaml
@@ -31,6 +31,7 @@
+
diff --git a/Content.Client/Options/UI/Tabs/ExtraTab.xaml.cs b/Content.Client/Options/UI/Tabs/ExtraTab.xaml.cs
index 938a26cd53..acc4fbc7e0 100644
--- a/Content.Client/Options/UI/Tabs/ExtraTab.xaml.cs
+++ b/Content.Client/Options/UI/Tabs/ExtraTab.xaml.cs
@@ -43,6 +43,8 @@ public sealed partial class ExtraTab : Control
Control.AddOptionCheckBox(SunriseCCVars.VoteMusicDisable, VoteMusicDisableCheckBox);
Control.AddOptionCheckBox(SunriseCCVars.MuteGhostRoleNotification, MuteGhostRoleNotificationCheckBox);
+ Control.AddOptionCheckBox(SunriseCCVars.PlayHeartBeatSound, PlayHeartbeatSound);
+
_cfg.OnValueChanged(SunriseCCVars.LobbyBackgroundType, OnLobbyBackgroundTypeChanged, true);
var lobbyBackgroundTypes = new List.ValueOption>
diff --git a/Content.Client/_Sunrise/Heartbeat/HeartbeatSystem.Settings.cs b/Content.Client/_Sunrise/Heartbeat/HeartbeatSystem.Settings.cs
new file mode 100644
index 0000000000..e0685809bb
--- /dev/null
+++ b/Content.Client/_Sunrise/Heartbeat/HeartbeatSystem.Settings.cs
@@ -0,0 +1,29 @@
+using Content.Shared._Sunrise.Heartbeat;
+using Content.Shared._Sunrise.SunriseCCVars;
+using Robust.Shared.Configuration;
+
+namespace Content.Client._Sunrise.Heartbeat;
+
+public sealed class HeartbeatSystem : EntitySystem
+{
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ _cfg.OnValueChanged(SunriseCCVars.PlayHeartBeatSound, OnOptionsChanged, true);
+ }
+
+ public override void Shutdown()
+ {
+ base.Shutdown();
+
+ _cfg.UnsubValueChanged(SunriseCCVars.PlayHeartBeatSound, OnOptionsChanged);
+ }
+
+ private void OnOptionsChanged(bool option)
+ {
+ RaiseNetworkEvent(new HeartbeatOptionsChangedEvent(option));
+ }
+}
diff --git a/Content.Client/_Sunrise/Medical/CrewMonitoring/BSOCrewMonitoringBoundUserInterface.cs b/Content.Client/_Sunrise/Medical/CrewMonitoring/BSOCrewMonitoringBoundUserInterface.cs
new file mode 100644
index 0000000000..eb0d13cf64
--- /dev/null
+++ b/Content.Client/_Sunrise/Medical/CrewMonitoring/BSOCrewMonitoringBoundUserInterface.cs
@@ -0,0 +1,73 @@
+using Content.Shared.Medical.CrewMonitoring;
+using Robust.Client.UserInterface;
+using System.Linq;
+using Content.Shared.Access;
+using Content.Shared.Access.Components;
+using Content.Shared.Access.Systems;
+using Content.Shared.Containers.ItemSlots;
+using Robust.Client.UserInterface;
+using Robust.Shared.Prototypes;
+using static Content.Shared.Access.Components.AccessOverriderComponent;
+using Content.Shared.Implants.Components;
+namespace Content.Client.Medical.CrewMonitoring.BSO;
+
+public class BSOCrewMonitoringBoundUserInterface : BoundUserInterface
+{
+ [ViewVariables]
+ protected CrewMonitoringWindow? _menu;
+
+ public BSOCrewMonitoringBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
+ {
+ _accessOverriderSystem = EntMan.System();
+ }
+ protected readonly SharedAccessOverriderSystem _accessOverriderSystem = default!;
+
+ protected override void Open()
+ {
+ base.Open();
+ EntityUid? gridUid = null;
+ var stationName = string.Empty;
+
+ if (EntMan.TryGetComponent(Owner, out var xform))
+ {
+ gridUid = xform.GridUid;
+
+ if (EntMan.TryGetComponent(gridUid, out var metaData))
+ {
+ stationName = metaData.EntityName;
+ }
+ }
+
+ _menu = this.CreateWindow();
+ _menu.Set(stationName, gridUid);
+ }
+
+ protected override void UpdateState(BoundUserInterfaceState state)
+ {
+ base.UpdateState(state);
+ switch (state)
+ {
+ case CrewMonitoringState st:
+ EntMan.TryGetComponent(Owner, out var xform);
+ var commandDepartmentSensors = st.Sensors
+ .Where(sensor => sensor.JobDepartments.Contains("Command"))
+ .ToList();
+ //also ALWAYS include the trackers
+ //this is jank as there isnt a direct indication of a tracker in the suit sensor status
+ //so we need to check the component directly
+ foreach (var sensor in st.Sensors)
+ {
+ //get the client entity
+ var clientEntity = EntMan.GetEntity(sensor.SuitSensorUid);
+ if (EntMan.TryGetComponent(clientEntity, out var suitSensor))
+ {
+ commandDepartmentSensors.Add(sensor);
+ }
+ }
+ //remove duplicates
+ commandDepartmentSensors = commandDepartmentSensors.Distinct().ToList();
+ _menu?.ShowSensors(commandDepartmentSensors, Owner, xform?.Coordinates);
+ break;
+ }
+ }
+}
diff --git a/Content.Server/_Sunrise/CritHeartbeat/CritHeartbeatComponent.cs b/Content.Server/_Sunrise/CritHeartbeat/CritHeartbeatComponent.cs
deleted file mode 100644
index b4a62e87a6..0000000000
--- a/Content.Server/_Sunrise/CritHeartbeat/CritHeartbeatComponent.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using Robust.Shared.Audio;
-
-namespace Content.Server._Sunrise.CritHeartbeat;
-
-[RegisterComponent]
-public sealed partial class CritHeartbeatComponent : Component
-{
- [DataField]
- public SoundSpecifier HeartbeatSound = new SoundPathSpecifier("/Audio/_Sunrise/Effects/heartbeat.ogg");
-
- ///
- /// Чтобы выключать это для наследников в прототипах
- ///
- [DataField]
- public bool Enabled = true;
-
- public EntityUid? AudioStream;
-}
diff --git a/Content.Server/_Sunrise/CritHeartbeat/CritHeartbeatSystem.cs b/Content.Server/_Sunrise/CritHeartbeat/CritHeartbeatSystem.cs
deleted file mode 100644
index dfa89d6684..0000000000
--- a/Content.Server/_Sunrise/CritHeartbeat/CritHeartbeatSystem.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using Content.Shared.Damage;
-using Content.Shared.Mobs;
-using Robust.Server.Audio;
-using Robust.Shared.Audio;
-
-namespace Content.Server._Sunrise.CritHeartbeat;
-
-public sealed class CritHeartbeatSystem : EntitySystem
-{
- [Dependency] private readonly AudioSystem _audio = default!;
-
- public override void Initialize()
- {
- base.Initialize();
-
- SubscribeLocalEvent(OnMobStateChanged);
- SubscribeLocalEvent(OnDamage);
- }
-
- private void OnMobStateChanged(Entity ent, ref MobStateChangedEvent args)
- {
- if (!ent.Comp.Enabled)
- return;
-
- ent.Comp.AudioStream = args.NewMobState == MobState.Critical
- ? _audio.PlayEntity(ent.Comp.HeartbeatSound, ent, ent)?.Entity
- : _audio.Stop(ent.Comp.AudioStream);
- }
-
- private void OnDamage(Entity ent, ref DamageChangedEvent args)
- {
- if (!ent.Comp.Enabled)
- return;
-
- if (!Exists(ent.Comp.AudioStream))
- return;
-
- var pitch = Math.Min(1, 100 / args.Damageable.TotalDamage.Float());
-
- // Потому что игра говно, тут нельзя изменять аудиопарамс уже существующего звука. Поэтому я пересоздаю его заново
- // Это приводит к проигрыванию звука через неравномерные промежутки времени, но зато работает и не очень заметно
- _audio.Stop(ent.Comp.AudioStream);
- ent.Comp.AudioStream = _audio.PlayEntity(ent.Comp.HeartbeatSound, ent, ent, AudioParams.Default.WithPitchScale(pitch))?.Entity;
- }
-}
diff --git a/Content.Server/_Sunrise/DamageOverlay/DamageOverlaySystem.cs b/Content.Server/_Sunrise/DamageOverlay/DamageOverlaySystem.cs
index 36342be5bd..415f0e8851 100644
--- a/Content.Server/_Sunrise/DamageOverlay/DamageOverlaySystem.cs
+++ b/Content.Server/_Sunrise/DamageOverlay/DamageOverlaySystem.cs
@@ -1,9 +1,9 @@
-using System.Numerics;
-using Content.Server.Mind;
using Content.Server.Popups;
using Content.Shared._Sunrise.DamageOverlay;
+using Content.Shared._Sunrise.Helpers;
using Content.Shared.Damage;
using Content.Shared.FixedPoint;
+using Content.Shared.GameTicking;
using Robust.Shared.Map;
using Robust.Shared.Player;
using Robust.Shared.Random;
@@ -16,12 +16,11 @@ namespace Content.Server._Sunrise.DamageOverlay;
public sealed class DamageOverlaySystem : EntitySystem
{
[Dependency] private readonly PopupSystem _popupSystem = default!;
- [Dependency] private readonly MindSystem _mindSystem = default!;
[Dependency] private readonly IRobustRandom _random = default!;
[Dependency] private readonly ISharedPlayerManager _player = default!;
- private readonly List _disabledSessions = [];
- private readonly Dictionary _playerSettings = new ();
+ private static readonly HashSet DisabledSessions = [];
+ private static readonly Dictionary PlayerSettings = new ();
public override void Initialize()
{
@@ -30,16 +29,24 @@ public sealed class DamageOverlaySystem : EntitySystem
SubscribeLocalEvent(OnDamageChange);
SubscribeNetworkEvent(OnDamageOverlayOption);
+
+ SubscribeLocalEvent(_ => CleanUp());
}
- private async void OnDamageOverlayOption(DamageOverlayOptionEvent ev, EntitySessionEventArgs args)
+ private static void CleanUp()
+ {
+ DisabledSessions.Clear();
+ PlayerSettings.Clear();
+ }
+
+ private static async void OnDamageOverlayOption(DamageOverlayOptionEvent ev, EntitySessionEventArgs args)
{
if (ev.Enabled)
- _disabledSessions.Remove(args.SenderSession);
+ DisabledSessions.Remove(args.SenderSession);
else
- _disabledSessions.Add(args.SenderSession);
+ DisabledSessions.Add(args.SenderSession);
- _playerSettings[args.SenderSession] = new DamageOverlaySettings(ev.SelfEnabled, ev.StructuresEnabled);
+ PlayerSettings.TryAdd(args.SenderSession, new DamageOverlaySettings(ev.SelfEnabled, ev.StructuresEnabled));
}
private void OnDamageChange(Entity ent, ref DamageChangedEvent args)
@@ -48,7 +55,7 @@ public sealed class DamageOverlaySystem : EntitySystem
return;
var damageDelta = args.DamageDelta.GetTotal();
- var coords = GenerateRandomCoordinates(Transform(ent).Coordinates, ent.Comp.Radius);
+ var coords = Transform(ent).Coordinates.GetRandomInRadius(ent.Comp.Radius, _random);
// Идея в том, что попапы должны разделяться на две большие категории: без отправителя и с ним
// В итоге должен быть только один попап, либо тот, либо этот
@@ -58,10 +65,10 @@ public sealed class DamageOverlaySystem : EntitySystem
// Пример: Космос, огонь и т.д.
- if (_mindSystem.TryGetMind(ent, out _, out var mindTarget) && _player.TryGetSessionById(mindTarget.UserId, out var sessionTarget))
+ if (_player.TryGetSessionByEntity(ent, out var targetSession))
{
// Специально скрыл попапы с пассивной регенерацией, они скорее мешают
- TryCreatePopup(ent, damageDelta, coords, sessionTarget);
+ TryCreatePopup(ent, damageDelta, coords, targetSession);
return;
}
@@ -72,27 +79,17 @@ public sealed class DamageOverlaySystem : EntitySystem
if (args.Origin == null)
return;
- if (!_mindSystem.TryGetMind(args.Origin.Value, out _, out var mindOrigin) || !_player.TryGetSessionById(mindOrigin.UserId, out var sessionOrigin))
+ if (!_player.TryGetSessionByEntity(args.Origin.Value, out var originSession))
return;
- TryCreatePopup(ent, damageDelta, coords, sessionOrigin);
+ TryCreatePopup(ent, damageDelta, coords, originSession);
}
- private EntityCoordinates GenerateRandomCoordinates(EntityCoordinates center, float radius)
- {
- var angle = _random.NextDouble() * 2 * Math.PI;
-
- var distance = _random.NextDouble() * radius;
-
- var offsetX = (float)(Math.Cos(angle) * distance);
- var offsetY = (float)(Math.Sin(angle) * distance);
-
- var newPosition = new Vector2(center.Position.X + offsetX, center.Position.Y + offsetY);
-
- return new EntityCoordinates(center.EntityId, newPosition);
- }
-
- private bool TryCreatePopup(Entity ent, FixedPoint2 damageDelta, EntityCoordinates coords, ICommonSession session, bool showHealPopup = true)
+ private bool TryCreatePopup(Entity ent,
+ FixedPoint2 damageDelta,
+ EntityCoordinates coords,
+ ICommonSession session,
+ bool showHealPopup = true)
{
if (IsDisabledByClient(session, ent))
return false;
@@ -111,12 +108,12 @@ public sealed class DamageOverlaySystem : EntitySystem
return true;
}
- private bool IsDisabledByClient(ICommonSession session, Entity target)
+ private static bool IsDisabledByClient(ICommonSession session, Entity target)
{
- if (_disabledSessions.Contains(session))
+ if (DisabledSessions.Contains(session))
return true;
- if (_playerSettings.TryGetValue(session, out var playerSettings))
+ if (PlayerSettings.TryGetValue(session, out var playerSettings))
{
if (target.Comp.IsStructure && !playerSettings.StructureDamage)
return true;
@@ -128,17 +125,9 @@ public sealed class DamageOverlaySystem : EntitySystem
return false;
}
- private struct DamageOverlaySettings
+ private struct DamageOverlaySettings(bool selfEnabled, bool structuresEnabled)
{
- public readonly bool StructureDamage;
-
- public readonly bool SelfDamage;
-
- public DamageOverlaySettings(bool evSelfEnabled, bool evStructuresEnabled)
- {
- SelfDamage = evSelfEnabled;
-
- StructureDamage = evStructuresEnabled;
- }
+ public readonly bool SelfDamage = selfEnabled;
+ public readonly bool StructureDamage = structuresEnabled;
}
}
diff --git a/Content.Server/_Sunrise/Heartbeat/Components/ActiveHeartbeatComponent.cs b/Content.Server/_Sunrise/Heartbeat/Components/ActiveHeartbeatComponent.cs
new file mode 100644
index 0000000000..389d572da5
--- /dev/null
+++ b/Content.Server/_Sunrise/Heartbeat/Components/ActiveHeartbeatComponent.cs
@@ -0,0 +1,10 @@
+namespace Content.Server._Sunrise.Heartbeat.Components;
+
+[RegisterComponent]
+public sealed partial class ActiveHeartbeatComponent : Component
+{
+ [ViewVariables] public float Pitch = 1f;
+ [ViewVariables] public TimeSpan NextHeartbeatCooldown = TimeSpan.FromSeconds(0.5f);
+
+ public TimeSpan? NextHeartbeatTime;
+}
diff --git a/Content.Server/_Sunrise/Heartbeat/Components/CritHeartbeatComponent.cs b/Content.Server/_Sunrise/Heartbeat/Components/CritHeartbeatComponent.cs
new file mode 100644
index 0000000000..593c370a38
--- /dev/null
+++ b/Content.Server/_Sunrise/Heartbeat/Components/CritHeartbeatComponent.cs
@@ -0,0 +1,4 @@
+namespace Content.Server._Sunrise.Heartbeat.Components;
+
+[RegisterComponent]
+public sealed partial class CritHeartbeatComponent : Component;
diff --git a/Content.Server/_Sunrise/Heartbeat/Systems/HeartbeatSystem.Crit.cs b/Content.Server/_Sunrise/Heartbeat/Systems/HeartbeatSystem.Crit.cs
new file mode 100644
index 0000000000..66ff9f4107
--- /dev/null
+++ b/Content.Server/_Sunrise/Heartbeat/Systems/HeartbeatSystem.Crit.cs
@@ -0,0 +1,60 @@
+using Content.Server._Sunrise.Heartbeat.Components;
+using Content.Shared.Damage;
+using Content.Shared.Mobs;
+
+namespace Content.Server._Sunrise.Heartbeat.Systems;
+
+public sealed partial class HeartbeatSystem
+{
+ // Минимальное и максимальное время между ударами сердца
+ private const float MinimumCooldown = 0.5f;
+ private const float MaximumCooldown = 3f;
+
+ private void OnMobStateChanged(Entity ent, ref MobStateChangedEvent args)
+ {
+ if (args.NewMobState != MobState.Critical)
+ {
+ RemComp(ent);
+ return;
+ }
+
+ var activeHeartbeat = EnsureComp(ent);
+
+ TryCalculateCurrentState((ent.Owner, activeHeartbeat));
+ SetNextTime(activeHeartbeat);
+ }
+
+ ///
+ /// Подтягивает значения эффектов в зависимости от того, насколько игрок продамажен
+ /// Чем выше урон -> тем медленнее бьется сердце и тем более глухой звук
+ ///
+ private void OnDamage(Entity ent, ref DamageChangedEvent args)
+ {
+ TryCalculateCurrentState(ent, args.Damageable);
+ }
+
+ ///
+ /// Подсчитывает нужные данные о текущем уроне тела и в зависимости от них задает нужный pitch и cooldown для сердцебиения
+ ///
+ ///
+ ///
+ ///
+ private bool TryCalculateCurrentState(Entity ent, DamageableComponent? damageable = null)
+ {
+ if (!Resolve(ent.Owner, ref damageable))
+ return false;
+
+ var totalDamage = damageable.TotalDamage.Float();
+
+ var pitch = Math.Min(1f, 100f / totalDamage);
+
+ var excess = Math.Max(0f, totalDamage - 100f);
+ var cooldownSeconds = MinimumCooldown + (excess / 100f) * (MaximumCooldown - MinimumCooldown);
+
+ ent.Comp.Pitch = pitch;
+ ent.Comp.NextHeartbeatCooldown = TimeSpan.FromSeconds(cooldownSeconds);
+
+ return true;
+ }
+
+}
diff --git a/Content.Server/_Sunrise/Heartbeat/Systems/HeartbeatSystem.cs b/Content.Server/_Sunrise/Heartbeat/Systems/HeartbeatSystem.cs
new file mode 100644
index 0000000000..34cf06e212
--- /dev/null
+++ b/Content.Server/_Sunrise/Heartbeat/Systems/HeartbeatSystem.cs
@@ -0,0 +1,84 @@
+using Content.Server._Sunrise.Heartbeat.Components;
+using Content.Shared._Sunrise.Heartbeat;
+using Content.Shared.Damage;
+using Content.Shared.GameTicking;
+using Content.Shared.Mobs;
+using Robust.Server.Audio;
+using Robust.Shared.Audio;
+using Robust.Shared.Player;
+using Robust.Shared.Timing;
+
+namespace Content.Server._Sunrise.Heartbeat.Systems;
+
+// TODO: Сделать возможность с помощью стетоскопа услышать сердцебиение человека
+
+public sealed partial class HeartbeatSystem : EntitySystem
+{
+ [Dependency] private readonly AudioSystem _audio = default!;
+ [Dependency] private readonly ISharedPlayerManager _player = default!;
+ [Dependency] private readonly IGameTiming _timing = default!;
+
+ private static readonly SoundSpecifier HeartbeatSound =
+ new SoundPathSpecifier("/Audio/_Sunrise/Effects/heartbeat.ogg", AudioParams.Default.WithVolume(-3f));
+
+ private static readonly HashSet DisabledSessions = [];
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnMobStateChanged);
+ SubscribeLocalEvent(OnDamage);
+
+ SubscribeNetworkEvent(OnOptionsChanged);
+
+ SubscribeLocalEvent(_ => DisabledSessions.Clear());
+ }
+
+ public override void Update(float frameTime)
+ {
+ base.Update(frameTime);
+
+ var query = EntityQueryEnumerator();
+
+ while (query.MoveNext(out var uid, out var activeHeartbeat))
+ {
+ if (_timing.CurTime < activeHeartbeat.NextHeartbeatTime)
+ continue;
+
+ if (IsDisabledByClient(uid))
+ continue;
+
+ _audio.PlayGlobal(HeartbeatSound, uid, AudioParams.Default.WithPitchScale(activeHeartbeat.Pitch));
+
+ SetNextTime(activeHeartbeat);
+ }
+ }
+
+ ///
+ /// Устанавливает время следующего удара сердца
+ ///
+ private void SetNextTime(ActiveHeartbeatComponent component)
+ {
+ component.NextHeartbeatTime = _timing.CurTime + component.NextHeartbeatCooldown;
+ }
+
+ private bool IsDisabledByClient(EntityUid player)
+ {
+ if (!_player.TryGetSessionByEntity(player, out var session))
+ return true;
+
+ if (DisabledSessions.Contains(session))
+ return true;
+
+ return false;
+ }
+
+ private static void OnOptionsChanged(HeartbeatOptionsChangedEvent ev, EntitySessionEventArgs args)
+ {
+ if (ev.Enabled)
+ DisabledSessions.Remove(args.SenderSession);
+ else
+ DisabledSessions.Add(args.SenderSession);
+ }
+}
diff --git a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs
index 2b862a83ac..74a7d65946 100644
--- a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs
+++ b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.FixedPoint;
+using Robust.Shared.Audio;
using Robust.Shared.GameStates;
namespace Content.Shared.Chemistry.Components;
@@ -51,4 +52,10 @@ public sealed partial class SolutionTransferComponent : Component
[DataField("canChangeTransferAmount")]
[ViewVariables(VVAccess.ReadWrite)]
public bool CanChangeTransferAmount { get; set; } = false;
+
+ // Sunrise added start
+ [DataField]
+ public SoundSpecifier? TransferSound = new SoundCollectionSpecifier("SolutionTransfer",
+ AudioParams.Default.WithVolume(-5f).WithMaxDistance(3f).WithVariation(0.15f));
+ // Sunrise added end
}
diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs
index b0f55a3272..44eafbf701 100644
--- a/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs
+++ b/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs
@@ -6,6 +6,7 @@ using Content.Shared.FixedPoint;
using Content.Shared.Interaction;
using Content.Shared.Popups;
using Content.Shared.Verbs;
+using Robust.Shared.Audio.Systems;
using Robust.Shared.Network;
using Robust.Shared.Player;
@@ -21,6 +22,7 @@ public sealed class SolutionTransferSystem : EntitySystem
[Dependency] private readonly SharedPopupSystem _popup = default!;
[Dependency] private readonly SharedSolutionContainerSystem _solution = default!;
[Dependency] private readonly SharedUserInterfaceSystem _ui = default!;
+ [Dependency] private readonly SharedAudioSystem _audio = default!; // Sunrise added
///
/// Default transfer amounts for the set-transfer verb.
@@ -161,10 +163,15 @@ public sealed class SolutionTransferSystem : EntitySystem
public FixedPoint2 Transfer(EntityUid user,
EntityUid sourceEntity,
Entity source,
- EntityUid targetEntity,
+ Entity targetEntity, // Sunrise edit
Entity target,
FixedPoint2 amount)
{
+ // Sunrise added start
+ if (!Resolve(targetEntity.Owner, ref targetEntity.Comp))
+ return FixedPoint2.Zero;
+ // Sunrise added end
+
var transferAttempt = new SolutionTransferAttemptEvent(sourceEntity, targetEntity);
// Check if the source is cancelling the transfer
@@ -202,6 +209,10 @@ public sealed class SolutionTransferSystem : EntitySystem
var solution = _solution.SplitSolution(source, actualAmount);
_solution.AddSolution(target, solution);
+ // Sunrise added start
+ _audio.PlayPvs(targetEntity.Comp.TransferSound, targetEntity);
+ // Sunrise added end
+
var ev = new SolutionTransferredEvent(sourceEntity, targetEntity, user, actualAmount);
RaiseLocalEvent(targetEntity, ref ev);
diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs
index da86e89252..6fa28fd4f6 100644
--- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs
+++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs
@@ -62,17 +62,20 @@ public abstract class ClothingSystem : EntitySystem
if (TryComp(slotEntity, out ClothingComponent? item) && !item.QuickEquip)
continue;
- if (!_invSystem.TryUnequip(userEnt, slotDef.Name, true, inventory: userEnt, checkDoafter: true))
+ // Sunrise edit - убрал тихое надевание через быстрое надевание
+ if (!_invSystem.TryUnequip(userEnt, slotDef.Name, false, inventory: userEnt, checkDoafter: true))
continue;
- if (!_invSystem.TryEquip(userEnt, toEquipEnt, slotDef.Name, true, inventory: userEnt, clothing: toEquipEnt, checkDoafter: true, triggerHandContact: true))
+ // Sunrise edit - убрал тихое надевание через быстрое надевание
+ if (!_invSystem.TryEquip(userEnt, toEquipEnt, slotDef.Name, false, inventory: userEnt, clothing: toEquipEnt, checkDoafter: true, triggerHandContact: true))
continue;
_handsSystem.PickupOrDrop(userEnt, slotEntity.Value, handsComp: userEnt);
}
else
{
- if (!_invSystem.TryEquip(userEnt, toEquipEnt, slotDef.Name, true, inventory: userEnt, clothing: toEquipEnt, checkDoafter: true, triggerHandContact: true))
+ // Sunrise edit - убрал тихое надевание через быстрое надевание
+ if (!_invSystem.TryEquip(userEnt, toEquipEnt, slotDef.Name, false, inventory: userEnt, clothing: toEquipEnt, checkDoafter: true, triggerHandContact: true))
continue;
}
diff --git a/Content.Shared/Nutrition/Components/DrinkComponent.cs b/Content.Shared/Nutrition/Components/DrinkComponent.cs
index 17baaef5a3..210e22a31d 100644
--- a/Content.Shared/Nutrition/Components/DrinkComponent.cs
+++ b/Content.Shared/Nutrition/Components/DrinkComponent.cs
@@ -13,7 +13,7 @@ public sealed partial class DrinkComponent : Component
public string Solution = "drink";
[DataField, AutoNetworkedField]
- public SoundSpecifier UseSound = new SoundPathSpecifier("/Audio/Items/drink.ogg");
+ public SoundSpecifier UseSound = new SoundCollectionSpecifier("DrinkSounds"); // Sunrise edit
[DataField, AutoNetworkedField]
public FixedPoint2 TransferAmount = FixedPoint2.New(5);
diff --git a/Content.Shared/_Sunrise/Heartbeat/HeartbeatOptionsChangedEvent.cs b/Content.Shared/_Sunrise/Heartbeat/HeartbeatOptionsChangedEvent.cs
new file mode 100644
index 0000000000..8485e63bdc
--- /dev/null
+++ b/Content.Shared/_Sunrise/Heartbeat/HeartbeatOptionsChangedEvent.cs
@@ -0,0 +1,9 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._Sunrise.Heartbeat;
+
+[Serializable, NetSerializable]
+public sealed class HeartbeatOptionsChangedEvent(bool enabled) : EntityEventArgs
+{
+ public bool Enabled { get; } = enabled;
+}
diff --git a/Content.Shared/_Sunrise/SunriseCCVars/SunriseCCVars.cs b/Content.Shared/_Sunrise/SunriseCCVars/SunriseCCVars.cs
index 338bc5e79e..e38597cfc3 100644
--- a/Content.Shared/_Sunrise/SunriseCCVars/SunriseCCVars.cs
+++ b/Content.Shared/_Sunrise/SunriseCCVars/SunriseCCVars.cs
@@ -428,4 +428,11 @@ public sealed partial class SunriseCCVars : CVars
public static readonly CVarDef MuteGhostRoleNotification =
CVarDef.Create("ghost.mute_role_notification", false, CVar.CLIENTONLY | CVar.ARCHIVE);
+
+ /*
+ * Heartbeat sound
+ */
+
+ public static readonly CVarDef PlayHeartBeatSound =
+ CVarDef.Create("heartbeat.play_sound", true, CVar.CLIENTONLY | CVar.ARCHIVE);
}
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound1.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound1.ogg
new file mode 100644
index 0000000000..f605559185
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound1.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound2.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound2.ogg
new file mode 100644
index 0000000000..3a6cf1dcbb
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound2.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound3.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound3.ogg
new file mode 100644
index 0000000000..c9b2e9764b
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound3.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound4.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound4.ogg
new file mode 100644
index 0000000000..0a61f1d595
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound4.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound5.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound5.ogg
new file mode 100644
index 0000000000..87aef78577
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Drink/sound5.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound1.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound1.ogg
new file mode 100644
index 0000000000..4ec9353b34
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound1.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound2.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound2.ogg
new file mode 100644
index 0000000000..c5486b531c
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound2.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound3.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound3.ogg
new file mode 100644
index 0000000000..2e6cbafb8c
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound3.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound4.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound4.ogg
new file mode 100644
index 0000000000..1145c23c12
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound4.ogg differ
diff --git a/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound5.ogg b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound5.ogg
new file mode 100644
index 0000000000..22b2874c79
Binary files /dev/null and b/Resources/Audio/_Sunrise/Effects/Liquid/Transfer/sound5.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Cases/close.ogg b/Resources/Audio/_Sunrise/Items/Cases/close.ogg
new file mode 100644
index 0000000000..00fc9cd650
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Cases/close.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Cases/open.ogg b/Resources/Audio/_Sunrise/Items/Cases/open.ogg
new file mode 100644
index 0000000000..5be680517f
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Cases/open.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Equip/Backpacks/sound1.ogg b/Resources/Audio/_Sunrise/Items/Equip/Backpacks/sound1.ogg
new file mode 100644
index 0000000000..751f4fcee9
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Equip/Backpacks/sound1.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Equip/Gloves/sound1.ogg b/Resources/Audio/_Sunrise/Items/Equip/Gloves/sound1.ogg
new file mode 100644
index 0000000000..4222ae8e86
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Equip/Gloves/sound1.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Equip/Helmets/sound1.ogg b/Resources/Audio/_Sunrise/Items/Equip/Helmets/sound1.ogg
new file mode 100644
index 0000000000..cde06408df
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Equip/Helmets/sound1.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Equip/base_equip.ogg b/Resources/Audio/_Sunrise/Items/Equip/base_equip.ogg
new file mode 100644
index 0000000000..d90751d20d
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Equip/base_equip.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/GasTanks/insert.ogg b/Resources/Audio/_Sunrise/Items/GasTanks/insert.ogg
new file mode 100644
index 0000000000..e8268fe403
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/GasTanks/insert.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/GasTanks/remove.ogg b/Resources/Audio/_Sunrise/Items/GasTanks/remove.ogg
new file mode 100644
index 0000000000..01b76f1553
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/GasTanks/remove.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Backpacks/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Backpacks/drop.ogg
new file mode 100644
index 0000000000..a25ee74578
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Backpacks/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Backpacks/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Backpacks/pickup.ogg
new file mode 100644
index 0000000000..b859e69afc
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Backpacks/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Cases/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Cases/drop.ogg
new file mode 100644
index 0000000000..bf2b5070a8
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Cases/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Cases/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Cases/pickup.ogg
new file mode 100644
index 0000000000..9f5a1d6fa7
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Cases/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/GasTanks/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/GasTanks/drop.ogg
new file mode 100644
index 0000000000..4c0d37c923
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/GasTanks/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/GasTanks/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/GasTanks/pickup.ogg
new file mode 100644
index 0000000000..b3797c4d1b
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/GasTanks/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Glass/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Glass/drop.ogg
new file mode 100644
index 0000000000..8d0ceeb4fc
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Glass/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Glass/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Glass/pickup.ogg
new file mode 100644
index 0000000000..226eb6abdb
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Glass/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Helmets/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Helmets/drop.ogg
new file mode 100644
index 0000000000..8892e120e0
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Helmets/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Helmets/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Helmets/pickup.ogg
new file mode 100644
index 0000000000..b28def3a51
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Helmets/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/ID/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/ID/drop.ogg
new file mode 100644
index 0000000000..f74c6ab4c9
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/ID/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/ID/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/ID/pickup.ogg
new file mode 100644
index 0000000000..1dcab18dd6
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/ID/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Leather/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Leather/drop.ogg
new file mode 100644
index 0000000000..d9d5ebf539
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Leather/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Leather/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Leather/pickup.ogg
new file mode 100644
index 0000000000..baa983daea
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Leather/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Metal/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Metal/drop.ogg
new file mode 100644
index 0000000000..7d722993b8
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Metal/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Metal/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Metal/pickup.ogg
new file mode 100644
index 0000000000..5574bdecc0
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Metal/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Plastic/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Plastic/drop.ogg
new file mode 100644
index 0000000000..858470b8ad
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Plastic/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Plastic/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Plastic/pickup.ogg
new file mode 100644
index 0000000000..ef5f5d7176
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Plastic/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Rod/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Rod/pickup.ogg
new file mode 100644
index 0000000000..e81a3f3af1
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Rod/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Shoes/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Shoes/drop.ogg
new file mode 100644
index 0000000000..dc02fd511a
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Shoes/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Shoes/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Shoes/pickup.ogg
new file mode 100644
index 0000000000..7266d61518
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Shoes/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Stunbatons/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Stunbatons/pickup.ogg
new file mode 100644
index 0000000000..fe10b931cc
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Stunbatons/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Telebatons/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Telebatons/drop.ogg
new file mode 100644
index 0000000000..1719fb8c92
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Telebatons/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Telebatons/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Telebatons/pickup.ogg
new file mode 100644
index 0000000000..e553af9495
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Telebatons/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Wood/drop.ogg b/Resources/Audio/_Sunrise/Items/Handling/Wood/drop.ogg
new file mode 100644
index 0000000000..ff5db20803
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Wood/drop.ogg differ
diff --git a/Resources/Audio/_Sunrise/Items/Handling/Wood/pickup.ogg b/Resources/Audio/_Sunrise/Items/Handling/Wood/pickup.ogg
new file mode 100644
index 0000000000..4c4ae281df
Binary files /dev/null and b/Resources/Audio/_Sunrise/Items/Handling/Wood/pickup.ogg differ
diff --git a/Resources/Audio/_Sunrise/Structures/Closets/close.ogg b/Resources/Audio/_Sunrise/Structures/Closets/close.ogg
new file mode 100644
index 0000000000..124f5d85f5
Binary files /dev/null and b/Resources/Audio/_Sunrise/Structures/Closets/close.ogg differ
diff --git a/Resources/Audio/_Sunrise/Structures/Closets/open.ogg b/Resources/Audio/_Sunrise/Structures/Closets/open.ogg
new file mode 100644
index 0000000000..86cbcea0d0
Binary files /dev/null and b/Resources/Audio/_Sunrise/Structures/Closets/open.ogg differ
diff --git a/Resources/Changelog/ChangelogSunrise.yml b/Resources/Changelog/ChangelogSunrise.yml
index 7be8d29d72..09b2f11b9a 100644
--- a/Resources/Changelog/ChangelogSunrise.yml
+++ b/Resources/Changelog/ChangelogSunrise.yml
@@ -16072,3 +16072,456 @@
id: 1104
time: '2025-05-05T17:38:41.0000000+00:00'
url: https://github.com/space-sunrise/sunrise-station/pull/2082
+- author: Noychik
+ changes:
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0448\u0430\u043D\u0441\
+ \ \u0433\u0435\u043D\u0435\u0440\u0430\u0446\u0438\u0438 \u0430\u043B\u043C\u0430\
+ \u0437\u043E\u0432 \u043D\u0430 \u043E\u0431\u043B\u043E\u043C\u043A\u0430\u0445"
+ type: Add
+ id: 1105
+ time: '2025-05-06T20:01:42.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2095
+- author: KaiserMaus, Happyrobot33
+ changes:
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0440\u0443\u0447\u043D\
+ \u043E\u0439 \u043C\u043E\u043D\u0438\u0442\u043E\u0440\u0438\u043D\u0433 \"\
+ \u0425-02\" \u0447\u043B\u0435\u043D\u043E\u0432 \u044D\u043A\u0438\u043F\u0430\
+ \u0436\u0430 \u0441 \u0442\u0440\u0435\u043A\u0435\u0440\u043E\u043C \u0434\u043B\
+ \u044F \u041E\u0421\u0429."
+ type: Add
+ id: 1106
+ time: '2025-05-07T00:28:31.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2090
+- author: ThereDrD
+ changes:
+ - message: "\u041B\u0430\u043C\u043F\u043E\u0447\u043A\u0438 \u0442\u0435\u043F\u0435\
+ \u0440\u044C \u043F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u044E\u0442 \u0446\
+ \u0438\u0444\u0440\u044B \u0443\u0440\u043E\u043D\u0430 \u043F\u0440\u0438 \u043F\
+ \u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0438 \u0443\u0440\u043E\u043D\u0430\
+ , \u043A\u0430\u043A \u0438 \u043E\u0441\u0442\u0430\u043B\u044C\u043D\u044B\
+ \u0435 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u044B"
+ type: Fix
+ id: 1107
+ time: '2025-05-07T00:26:37.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2103
+- author: Hart_ty
+ changes:
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D \u0440\u0435\u0446\u0435\u043F\
+ \u0442 \u0410\u0444\u0440\u043E\u0434\u0435\u0437\u0438\u0430\u043A\u0430."
+ type: Tweak
+ id: 1108
+ time: '2025-05-07T00:27:49.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2087
+- author: Flesxka
+ changes:
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0430 \u0444\u0430\u043C\u0438\
+ \u043B\u0438\u044F \u043F\u043B\u044E\u0448\u0435\u0432\u043E\u0439 \u0423\u0443\
+ \u043D\u044B"
+ type: Tweak
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0451\u043D \u043A\u0434 \u0430\u043A\
+ \u0442\u0438\u0432\u0430\u0446\u0438\u0438 \u043F\u043B\u044E\u0448\u0435\u0432\
+ \u043E\u0439 \u0423\u0443\u043D\u044B"
+ type: Tweak
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0437\u0432\u0443\u043A\
+ \ \u043F\u0440\u0438 \u0430\u0442\u0430\u043A\u0435 \u043F\u043B\u044E\u0448\
+ \u0435\u0432\u043E\u0439 \u0423\u0443\u043D\u043E\u0439"
+ type: Add
+ id: 1109
+ time: '2025-05-07T00:28:58.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2083
+- author: Flesxka
+ changes:
+ - message: "\u0421\u043C\u0430\u0439\u043B \u0441\u043D\u043E\u0432\u0430 \u0441\
+ \u0442\u0430\u043B \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u043C."
+ type: Tweak
+ id: 1110
+ time: '2025-05-07T00:27:21.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2101
+- author: ThereDrD
+ changes:
+ - message: "\u0417\u0432\u0443\u043A \u0441\u0435\u0440\u0434\u0446\u0435\u0431\u0438\
+ \u0435\u043D\u0438\u044F \u0432 \u043A\u0440\u0438\u0442\u0435 \u0442\u0435\u043F\
+ \u0435\u0440\u044C \u043C\u043E\u0436\u043D\u043E \u043E\u0442\u043A\u043B\u044E\
+ \u0447\u0438\u0442\u044C"
+ type: Tweak
+ - message: "\u0417\u0432\u0443\u043A \u0441\u0435\u0440\u0434\u0446\u0435\u0431\u0438\
+ \u0435\u043D\u0438\u044F \u0432 \u043A\u0440\u0438\u0442\u0435 \u0442\u0435\u043F\
+ \u0435\u0440\u044C \u043F\u0440\u043E\u0438\u0433\u0440\u044B\u0432\u0430\u0435\
+ \u0442\u0441\u044F"
+ type: Fix
+ id: 1111
+ time: '2025-05-07T00:27:37.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2098
+- author: Non_stop_smetana
+ changes:
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u0441\u0443\u043F\
+ \u0435\u0440\u043C\u0430\u0442\u0435\u0440\u0438\u044F"
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0434\u0435\u043F\u0430\
+ \u0440\u0442\u0430\u043C\u0435\u043D\u0442 \u0421\u0429"
+ type: Add
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0430 \u044D\u043A\u043E\u043D\
+ \u043E\u043C\u0438\u043A\u0430, \u0442\u0435\u043F\u0435\u0440\u044C \u043E\u043D\
+ \u0430 \u0420\u0410\u0411\u041E\u0422\u0410\u0415\u0422"
+ type: Tweak
+ - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u044B \u0431\u0430\
+ \u0433\u0438"
+ type: Fix
+ id: 1112
+ time: '2025-05-07T14:17:36.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2110
+- author: Non_stop_smetana & Focstor & VladimirZ
+ changes:
+ - message: "\u041D\u0430 \u0431\u0430\u0440\u0440\u0430\u0442\u0440\u0438 \u0434\
+ \u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043A\u0440\u0430\u0441\u043A\u043E\
+ \u043C\u0430\u0442."
+ type: Add
+ - message: "\u041D\u0430 \u0431\u0430\u0440\u0440\u0430\u0442\u0440\u0438 \u0434\
+ \u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u0440\u0430\u0431\u043E\u0447\
+ \u0430\u044F \u044D\u043A\u043E\u043D\u043E\u043C\u0438\u043A\u0430."
+ type: Add
+ - message: "\u0422\u0435\u043F\u0435\u0440\u044C, \u043D\u0430 \u0431\u0430\u0440\
+ \u0440\u0430\u0442\u0440\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0451\u043D\
+ \u043D\u0430\u044F \u0442\u044E\u0440\u044C\u043C\u0430, \u0441 \u0442\u0443\
+ \u0440\u043D\u0438\u043A\u0435\u0442\u0430\u043C\u0438!"
+ type: Add
+ - message: "\u0421\u0438\u043B\u043E \u0431\u044B\u043B\u043E \u0434\u043E\u0431\
+ \u0430\u0432\u043B\u0435\u043D\u043E \u043D\u0430 \u043A\u0430\u0440\u0442\u0443\
+ \ \u0431\u0430\u0440\u0440\u0430\u0442\u0440\u0438."
+ type: Add
+ - message: "\u041D\u0430 \u0431\u0430\u0440\u0440\u0430\u0442\u0440\u0438 \u0438\
+ \u0437\u043C\u0435\u043D\u0451\u043D \u0434\u0435\u043F\u0430\u0440\u0442\u0430\
+ \u043C\u0435\u043D\u0442 \u0421\u0429."
+ type: Tweak
+ - message: "\u041D\u0430 \u0431\u0430\u0440\u0440\u0430\u0442\u0440\u0438 \u0438\
+ \u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u044B \u043E\u0434\u0435\u044F\
+ \u043B\u0430."
+ type: Fix
+ id: 1113
+ time: '2025-05-07T16:20:21.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2112
+- author: banumbas
+ changes:
+ - message: "\u0411\u0438\u043E\u043A\u043E\u0434 \u0441\u0438\u043D\u0434\u0438\
+ -\u043F\u0438\u0440\u043E\u0433\u043E\u043C\u0451\u0442\u0443."
+ type: Add
+ - message: "\u0425\u043E\u043D\u043A\u0430\u043D\u044C\u0435 \u043F\u0440\u0438\
+ \ \u0433\u0435\u043D\u0435\u0440\u0430\u0446\u0438\u0438 \u043D\u043E\u0432\u043E\
+ \u0433\u043E \u043F\u0438\u0440\u043E\u0433\u0430 \u0443 \u0441\u0438\u043D\u0434\
+ \u0438-\u043F\u0438\u0440\u043E\u0433\u043E\u043C\u0451\u0442\u0430."
+ type: Add
+ - message: "\u0423\u0432\u0435\u043B\u0438\u0447\u0435\u043D\u043E \u0432\u0440\u0435\
+ \u043C\u044F \u043F\u0435\u0440\u0435\u0437\u0430\u0440\u044F\u0434\u043A\u0438\
+ \ \u0441\u0438\u043D\u0434\u0438-\u043F\u0438\u0440\u043E\u0433\u043E\u043C\u0451\
+ \u0442\u0430."
+ type: Tweak
+ - message: "\u0423\u043C\u0435\u043D\u044C\u0448\u0435\u043D\u043E \u043A\u043E\u043B\
+ \u0438\u0447\u0435\u0441\u0442\u0432\u043E \u043F\u0438\u0440\u043E\u0433\u043E\
+ \u0432 \u0432 \u0441\u0438\u043D\u0434\u0438-\u043F\u0438\u0440\u043E\u0433\u043E\
+ \u043C\u0451\u0442\u0435."
+ type: Tweak
+ id: 1114
+ time: '2025-05-12T14:36:32.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2146
+- author: iDesmond
+ changes:
+ - message: "\u041F\u0435\u0440\u0435\u0437\u0430\u0440\u044F\u0434\u043A\u0430 \u0441\
+ \u0442\u044F\u0436\u0435\u043A \u0431\u043E\u0440\u0433\u043E\u0432 \u0443\u043C\
+ \u0435\u043D\u044C\u0448\u0435\u043D\u0430 \u0441 15 \u0434\u043E 9 \u0441\u0435\
+ \u043A\u0443\u043D\u0434"
+ type: Tweak
+ id: 1115
+ time: '2025-05-12T14:36:49.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2130
+- author: iDesmond
+ changes:
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0444\u0440\u0430\u0437\
+ \u044B \u0434\u043B\u044F \u0431\u0430\u043D\u043A\u043E\u043C\u0430\u0442\u0430\
+ \ \u043D\u0430 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\
+ \u044E\u0449\u0438\u0435 \u0435\u043C\u0443."
+ type: Tweak
+ id: 1116
+ time: '2025-05-12T14:35:59.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2129
+- author: Non_stop_smetana
+ changes:
+ - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u043F\u043B\
+ \u0430\u0437\u043C\u044B! \u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0434\
+ \u0435\u043F\u0430\u0440\u0442\u0430\u043C\u0435\u043D\u0442 \u0421\u0429"
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u043F\u043E\u0447\
+ \u0442\u0430"
+ type: Add
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D \u0431\u0440\u0438\u0433\
+ , \u0442\u0435\u043F\u0435\u0440\u044C \u0442\u0430\u043C \u0431\u043E\u043B\
+ \u044C\u0448\u0435 \u0441\u043A\u0430\u0444\u0430\u043D\u0434\u0440\u043E\u0432\
+ , \u0430 \u0442\u0430\u043A\u0436\u0435 \u0434\u043E\u0431\u0430\u0432\u043B\
+ \u0435\u043D\u043E \u0432\u0441\u0451 \u0434\u043B\u044F \u0433\u0435\u043D\u043F\
+ \u043E\u043F \u0442\u044E\u0440\u043C\u044B."
+ type: Tweak
+ - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0430 \u044D\u043A\
+ \u043E\u043D\u043E\u043C\u0438\u043A\u0430, \u0442\u0435\u043F\u0435\u0440\u044C\
+ \ \u043E\u043D\u0430 \u0440\u0430\u0431\u043E\u0442\u0430\u0435\u0442 \u043D\
+ \u0430 \u0434\u0430\u043D\u043D\u043E\u0439 \u043A\u0430\u0440\u0442\u0435"
+ type: Fix
+ - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u044B \u0441\u0442\
+ \u0430\u0440\u044B\u0435 \u0431\u0430\u0433\u0438"
+ type: Fix
+ id: 1117
+ time: '2025-05-12T14:37:54.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2115
+- author: agranomys
+ changes:
+ - message: "\u0425\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435 EVA \u0431\u044B\
+ \u043B\u043E \u043F\u0435\u0440\u0435\u043C\u0435\u0449\u0435\u043D\u043E \u0431\
+ \u043B\u0438\u0436\u0435 \u043A \u043E\u0442\u0431\u044B\u0442\u0438\u044E,\
+ \ \u0430 \u0442\u0430\u043A\u0436\u0435 \u0443\u0432\u0435\u043B\u0438\u0447\
+ \u0435\u043D\u043E \u0432 2 \u0440\u0430\u0437\u0430 \u043D\u0430 \u0441\u0442\
+ \u0430\u043D\u0446\u0438\u0438 loop."
+ type: Tweak
+ - message: "\u0422\u0435\u043F\u0435\u0440\u044C \u043D\u0430 \u0441\u0442\u0430\
+ \u043D\u0446\u0438\u0438 loop \u043D\u0435\u0431\u043E\u043B\u044C\u0448\u043E\
+ \u0439 \u043E\u0442\u0434\u0435\u043B \u0441\u0438\u043D\u0435\u0433\u043E \u0449\
+ \u0438\u0442\u0430 \u0438\u0437 \u0447\u0435\u0442\u044B\u0440\u0435\u0445 \u043A\
+ \u043E\u043C\u043D\u0430\u0442, \u043E\u0434\u043D\u0430 \u0438\u0437 \u043A\
+ \u043E\u0442\u043E\u0440\u044B\u0445 \u043A\u0430\u044E\u0442\u0430 \u0434\u043B\
+ \u044F \u043B\u0435\u0439\u0442\u0435\u043D\u0430\u043D\u0442\u0430."
+ type: Tweak
+ - message: "\u041D\u0430 \u0441\u0442\u0430\u043D\u0446\u0438\u0438 loop \u0432\
+ \ \u043A\u0430\u044E\u0442\u0435 \u0413\u0421\u0411 \u0431\u044B\u043B\u043E\
+ \ \u0443\u0431\u0440\u0430\u043D\u043E \u0432\u0442\u043E\u0440\u0438\u0447\u043D\
+ \u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435. (\u0432 \u0441\u0432\u044F\
+ \u0437\u0438 \u0441 \u0442\u0435\u043C, \u0447\u0442\u043E \u0442\u0435\u043F\
+ \u0435\u0440\u044C \u043E\u043D \u0432\u044B\u0431\u0438\u0440\u0430\u0435\u0442\
+ \ \u0432 \u043B\u043E\u0434\u0430\u0443\u0442\u0435 \u0432\u0442\u043E\u0440\
+ \u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435)."
+ type: Remove
+ id: 1118
+ time: '2025-05-12T14:35:13.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2131
+- author: Kendrick
+ changes:
+ - message: "\u0412 \u0431\u0430\u0442\u0430\u0440\u0435\u0439\u043D\u043E\u043C\
+ \ \u043E\u0440\u0443\u0436\u0438\u0438 \u0442\u0435\u043F\u0435\u0440\u044C\
+ \ \u0441\u0440\u0430\u0437\u0443 \u0431\u0430\u0442\u0430\u0440\u0435\u0438\
+ \ \u0432\u044B\u0441\u043E\u043A\u043E\u0439 \u0451\u043C\u043A\u043E\u0441\u0442\
+ \u0438."
+ type: Tweak
+ id: 1119
+ time: '2025-05-12T14:37:30.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2107
+- author: Kendrick
+ changes:
+ - message: "\u0412 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u043D\u043E\u043C\
+ \ \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0435 \u0431\u0435\u0437\u0433\u0438\
+ \u043B\u044C\u0437\u043E\u0432\u044B\u0445 \u043F\u0430\u0442\u0440\u043E\u043D\
+ \u043E\u0432 \u0442\u0435\u043F\u0435\u0440\u044C 50 \u043F\u0430\u0442\u0440\
+ \u043E\u043D\u043E\u0432."
+ type: Tweak
+ id: 1120
+ time: '2025-05-12T14:39:12.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2109
+- author: ThereDrD
+ changes:
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043D\u043E\u0432\
+ \u044B\u0435 \u0437\u0432\u0443\u043A\u0438 \u043F\u043E\u0434\u043D\u044F\u0442\
+ \u0438\u044F \u0438 \u0431\u0440\u043E\u0441\u043A\u0430 \u0434\u043B\u044F\
+ \ ID \u043A\u0430\u0440\u0442, \u0431\u043E\u0442\u0438\u043D\u043E\u043A, \u0431\
+ \u043E\u043B\u044C\u0448\u0438\u043D\u0441\u0442\u0432\u0430 \u043C\u0430\u0442\
+ \u0435\u0440\u0438\u0430\u043B\u043E\u0432, \u0441\u0442\u0430\u043D\u0431\u0430\
+ \u0442\u043E\u043D\u043E\u0432, \u0442\u0435\u043B\u0435\u0441\u043A\u043E\u043F\
+ \u0438\u0447\u0435\u043A, \u043F\u043B\u0430\u0441\u0442\u0438\u043A\u043E\u0432\
+ \u044B\u0445 \u0441\u0442\u043E\u043B\u043E\u0432\u044B\u0445 \u043F\u0440\u0438\
+ \u0431\u043E\u0440\u043E\u0432, \u043C\u0435\u0442\u0430\u043B\u043B\u0438\u0447\
+ \u0435\u0441\u043A\u043E\u0439 \u043F\u043B\u0438\u0442\u043A\u0438, \u0441\u0442\
+ \u0435\u043A\u043B\u044F\u043D\u043D\u044B\u0445 \u0440\u0430\u0441\u0442\u0435\
+ \u043D\u0438\u0439"
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0437\u0432\u0443\
+ \u043A\u0438 \u043F\u043E\u0434\u043D\u044F\u0442\u0438\u044F \u0438 \u0431\u0440\
+ \u043E\u0441\u043A\u0430 \u0431\u0430\u043B\u043B\u043E\u043D\u043E\u0432. \u0422\
+ \u0435\u043F\u0435\u0440\u044C \u0432\u044B\u0434\u0430\u0447\u0430 \u0431\u0430\
+ \u043B\u043B\u043E\u043D\u0430 \u0438\u0437 \u0440\u0430\u0437\u0434\u0430\u0442\
+ \u0447\u0438\u043A\u0430 \u0438 \u0432\u0441\u0442\u0430\u0432\u043A\u0430/\u0432\
+ \u044B\u0434\u0430\u0447\u0430 \u0438\u0437 \u043A\u0430\u043D\u0438\u0441\u0442\
+ \u0440\u044B \u0441\u043E\u043F\u0440\u043E\u0432\u043E\u0436\u0434\u0430\u0435\
+ \u0442\u0441\u044F \u043F\u0440\u0438\u043A\u043E\u043B\u044C\u043D\u044B\u043C\
+ \ \u0437\u0432\u0443\u043A\u043E\u043C,"
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0431\u0430\u0437\
+ \u043E\u0432\u044B\u0435 \u0437\u0432\u0443\u043A\u0438 \u0434\u043B\u044F \u043D\
+ \u0430\u0434\u0435\u0432\u0430\u043D\u0438\u044F \u0432\u0441\u0435\u0439 \u043E\
+ \u0434\u0435\u0436\u0434\u044B"
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043D\u043E\u0432\
+ \u044B\u0435 \u0437\u0432\u0443\u043A\u0438 \u043F\u043E\u0434\u043D\u044F\u0442\
+ \u0438\u044F, \u0431\u0440\u043E\u0441\u043A\u0430, \u043E\u0442\u043A\u0440\
+ \u044B\u0442\u0438\u044F, \u0437\u0430\u043A\u0440\u044B\u0442\u0438\u044F \u0430\
+ \u043F\u0442\u0435\u0447\u0435\u043A, \u043F\u043E\u0440\u0442\u0441\u0438\u0433\
+ \u0430\u0440\u043E\u0432, \u0447\u0435\u043C\u043E\u0434\u0430\u043D\u043E\u0432\
+ , \u043A\u0435\u0439\u0441\u0430 \u0441 \u043C\u0435\u0434\u0430\u043B\u044F\
+ \u043C\u0438,"
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0437\u0432\u0443\
+ \u043A\u0438 \u043D\u0430\u0434\u0435\u0432\u0430\u043D\u0438\u044F \u043F\u0435\
+ \u0440\u0447\u0430\u0442\u043E\u043A \u0438 \u0431\u043E\u0435\u0432\u044B\u0445\
+ \ \u0448\u043B\u0435\u043C\u043E\u0432. \u042D\u0442\u0438 \u0448\u043B\u0435\
+ \u043C\u044B \u0442\u0430\u043A \u0436\u0435 \u0442\u0435\u043F\u0435\u0440\u044C\
+ \ \u0438\u043C\u0435\u044E\u0442 \u0437\u0432\u0443\u043A\u0438 \u043F\u043E\
+ \u0434\u043D\u044F\u0442\u0438\u044F \u0438 \u0431\u0440\u043E\u0441\u043A\u0430"
+ type: Add
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0437\u0432\u0443\u043A\
+ \u0438 \u0448\u043A\u0430\u0444\u043E\u0432, \u0442\u0435\u043F\u0435\u0440\u044C\
+ \ \u043E\u043D\u0438 \u0431\u043E\u043B\u0435\u0435 \u0436\u0435\u043B\u0435\
+ \u0437\u043D\u044B\u0435, \u043A\u0430\u043A \u0438 \u0441\u0430\u043C\u0438\
+ \ \u0448\u043A\u0430\u0444\u044B"
+ type: Tweak
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0437\u0432\u0443\u043A\
+ \u0438 \u043F\u0438\u0442\u044C\u044F. \u0422\u0435\u043F\u0435\u0440\u044C\
+ \ \u0438\u0445 \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0438\
+ \ \u043E\u043D\u0438 \u043F\u043E\u043B\u0443\u0447\u0448\u0435"
+ type: Tweak
+ - message: "\u0417\u0432\u0443\u043A\u0438 \u0438\u043D\u0441\u0442\u0440\u0443\u043C\
+ \u0435\u043D\u0442\u043E\u0432 \u0438 \u043F\u043E\u0434\u043D\u044F\u0442\u0438\
+ \u044F \u0441\u0442\u0430\u043A\u0430\u043D\u0430 \u0441\u0442\u0430\u043B\u0438\
+ \ \u0447\u0443\u0442\u044C \u0442\u0438\u0448\u0435"
+ type: Tweak
+ id: 1121
+ time: '2025-05-12T14:39:01.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2113
+- author: Kendrick
+ changes:
+ - message: "\u041D\u043E\u0433\u0438 \u0443\u043D\u0430\u0442\u0445\u043E\u0432\
+ \ \u0432\u044B\u043F\u0440\u044F\u043C\u0438\u043B\u0438\u0441\u044C"
+ type: Fix
+ id: 1122
+ time: '2025-05-12T14:39:55.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2108
+- author: ASLEEP
+ changes:
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043D\u0435\u043B\
+ \u043E\u0432\u043A\u0438\u0435 \u043E\u0447\u043A\u0438 \u0432 \u043B\u043E\u0434\
+ \u0430\u0443\u0442"
+ type: Add
+ id: 1123
+ time: '2025-05-12T14:42:35.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2138
+- author: KaiserMaus
+ changes:
+ - message: "\u0441\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u041F\u041D\u0412\
+ \ \u0442\u0435\u043F\u0435\u0440\u044C \u0442\u0440\u0435\u0431\u0443\u0435\u0442\
+ \ \u0443\u0440\u0430\u043D \u0432\u043C\u0435\u0441\u0442\u043E \u0430\u043B\
+ \u043C\u0430\u0437\u0430."
+ type: Tweak
+ id: 1124
+ time: '2025-05-12T14:44:46.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2143
+- author: KaiserMaus
+ changes:
+ - message: "\u0423\u0431\u0440\u0430\u043D \u0441\u043A\u0430\u0444\u0430\u043D\u0434\
+ \u0440 \u041A\u043E\u043C\u0430\u043D\u0434\u0438\u0440\u0430 \u0438\u0437 \u0430\
+ \u043F\u043B\u0438\u043D\u043A\u0430 \u0438 \u0434\u043E\u0431\u0430\u0432\u043B\
+ \u0435\u043D \u043D\u0430 \u0448\u0430\u0442\u0442\u043B \u041E\u043F\u0435\u0440\
+ \u0430\u0442\u0438\u0432\u043D\u0438\u043A\u043E\u0432."
+ type: Tweak
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u043D\u0435\u043A\u043E\
+ \u0442\u043E\u0440\u044B\u0435 \u0446\u0435\u043D\u044B \u0432 \u0430\u043F\u043B\
+ \u0438\u043D\u043A\u0435 \u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u043D\
+ \u0438\u043A\u043E\u0432."
+ type: Tweak
+ - message: "\u042D\u043B\u0438\u0442\u043D\u044B\u0439 \u0441\u043A\u0430\u0444\u0430\
+ \u043D\u0434\u0440 \u0431\u043E\u043B\u044C\u0448\u0435 \u043D\u0435 \u0438\u043C\
+ \u0435\u0435\u0442 \u0432\u0441\u0442\u0440\u043E\u0435\u043D\u043D\u044B\u0439\
+ \ \u0449\u0438\u0442."
+ type: Tweak
+ - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D \u0448\u0430\u0442\u0442\
+ \u043B \u042F\u0434\u0435\u0440\u043D\u044B\u0445 \u041E\u043F\u0435\u0440\u0430\
+ \u0442\u0438\u0432\u043D\u0438\u043A\u043E\u0432."
+ type: Tweak
+ - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D \u0410\u0432\u0430\u043D\
+ \u043F\u043E\u0441\u0442 \u042F\u0434\u0435\u0440\u043D\u044B\u0445 \u041E\u043F\
+ \u0435\u0440\u0430\u0442\u0438\u0432\u043D\u0438\u043A\u043E\u0432."
+ type: Tweak
+ id: 1125
+ time: '2025-05-12T20:50:35.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2136
+- author: Noychik
+ changes:
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u0442\u0435\u043A\
+ \u0441\u0442\u0443\u0440\u0430 \u0442\u0440\u043E\u0439\u043D\u043E\u0433\u043E\
+ \ \u0448\u0430\u0445\u0442\u0435\u0440\u0441\u043A\u043E\u0433\u043E \u0448\u043B\
+ \u044E\u0437\u0430"
+ type: Tweak
+ id: 1126
+ time: '2025-05-17T08:53:21.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2111
+- author: darvin7531
+ changes:
+ - message: "\u0438\u0441\u043F\u0440\u0430\u0432\u0438\u043B \u043F\u0443\u0442\u044C\
+ \ \u0434\u043E \u0441\u043F\u0440\u0430\u0439\u0442\u0430 \u043F\u0440\u043E\
+ \u0442\u0438\u0432\u043E\u0433\u0430\u0437\u0430 \u0421\u0438\u043D\u0435\u0433\
+ \u043E \u0429\u0438\u0442\u0430"
+ type: Fix
+ id: 1127
+ time: '2025-05-19T16:22:02.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2180
+- author: KaiserMaus
+ changes:
+ - message: "\u0443\u0431\u0440\u0430\u043D \u0438\u0437 \u0415\u043C\u0430\u0433\
+ \ \u0430\u0441\u043E\u0440\u0442\u0438\u043C\u0435\u043D\u0442\u0430 \u0414\u0435\
+ \u043B\u043E\u0432\u043E\u0439 \u0431\u0440\u043E\u043D\u0435 \u043A\u043E\u0441\
+ \u0442\u044E\u043C."
+ type: Remove
+ - message: "\u0414\u041E \u043F\u043E\u043B\u0443\u0447\u0438\u043B\u0438 \u0434\
+ \u0435\u043B\u043E\u0432\u043E\u0439 \u043A\u043E\u0441\u0442\u044E\u043C \u0432\
+ \ \u0430\u043F\u043B\u0438\u043D\u043A."
+ type: Add
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D \u0443\u0440\u043E\u043D\
+ \ \u0432\u0437\u0440\u044B\u0432-\u043E\u0448\u0435\u0439\u043D\u0438\u043A\u0430\
+ ."
+ type: Tweak
+ id: 1128
+ time: '2025-05-19T17:02:20.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2179
+- author: Worldead2123
+ changes:
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0451\u043D \u0423\u0431\u043E\u0440\u0448\
+ \u043A\u0430\u0444."
+ type: Tweak
+ id: 1129
+ time: '2025-05-19T17:02:12.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2158
+- author: Non_stop_smetana
+ changes:
+ - message: "\u0412\u0441\u0451 \u043D\u0438\u0436\u0435 \u043F\u0435\u0440\u0435\
+ \u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044B\u0435 \u0438\u0437\u043C\u0435\
+ \u043D\u0435\u043D\u0438\u044F \u043A\u0430\u0441\u0430\u0442\u044C\u0441\u044F\
+ \ \u043B\u0438\u0448\u044C \u043A\u0430\u0440\u0442\u044B \u043C\u0430\u0440\
+ \u0430\u0444\u043E\u043D."
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u043E\u0444\u0444\
+ \u043E\u0432\u0441\u043A\u0430\u044F \u044D\u043A\u043E\u043D\u043E\u043C\u0438\
+ \u043A\u0430."
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043A\u0440\u0430\u0441\
+ \u043A\u043E\u043C\u0430\u0442."
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u0430\u0432\u0442\
+ \u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044F \u0431\u0440\u0438\
+ \u0433\u0430."
+ type: Add
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0430 \u043E\u0440\u0443\u0436\
+ \u0435\u0439\u043D\u0430\u044F."
+ type: Tweak
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u043C\u043D\u043E\u0436\
+ \u0435\u0441\u0442\u0432\u043E \u043C\u0438\u043A\u0440\u043E \u0432\u0435\u0449\
+ \u0435\u0439, \u0447\u0442\u043E \u043C\u0435\u0448\u0430\u043B\u0438 \u0438\
+ \u0433\u0440\u0435"
+ type: Tweak
+ - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u044B \u043C\u043D\
+ \u043E\u0436\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0435 \u0431\u0430\
+ \u0433\u0438."
+ type: Fix
+ id: 1130
+ time: '2025-05-19T20:30:31.0000000+00:00'
+ url: https://github.com/space-sunrise/sunrise-station/pull/2168
diff --git a/Resources/Locale/en-US/_prototypes/_sunrise/entities/clothing/eyes/glasses.ftl b/Resources/Locale/en-US/_prototypes/_sunrise/entities/clothing/eyes/glasses.ftl
index 2783ddb36f..3b95f573de 100644
--- a/Resources/Locale/en-US/_prototypes/_sunrise/entities/clothing/eyes/glasses.ftl
+++ b/Resources/Locale/en-US/_prototypes/_sunrise/entities/clothing/eyes/glasses.ftl
@@ -14,3 +14,5 @@ ent-ClothingEyesGlassesThermalSyndie = optical thermal scanner
.desc = Thermals in the shape of glasses. for better exterminating NanoTrasen Scum.
ent-ClothingEyesGlassesThermalSec = optical thermal scanner
.desc = Thermals in the shape of glasses.
+ent-ClothingEyesStuttering = stuttering glasses
+ .desc = Glasses that give the owner knowledge...or stuttering
diff --git a/Resources/Locale/en-US/_prototypes/_sunrise/entities/objects/fun/toys.ftl b/Resources/Locale/en-US/_prototypes/_sunrise/entities/objects/fun/toys.ftl
index 1a0929a545..af2421b784 100644
--- a/Resources/Locale/en-US/_prototypes/_sunrise/entities/objects/fun/toys.ftl
+++ b/Resources/Locale/en-US/_prototypes/_sunrise/entities/objects/fun/toys.ftl
@@ -4,7 +4,7 @@ ent-PlushieTwo = Unknown
.desc = A plush, polite man with refined taste and a moustache.
ent-PlushieThree = Teresa Sharapova
.desc = The plush head of staff, he's pissing you off.
-ent-PlushieUunaMiira = Plushie Uuna Mi'Ira
+ent-PlushieUunaKatsuhiro = Plushie Uuna Katsuhiro
.desc = A dark elf with a bright soul.
ent-PlushieFour = Yasly Chunkanjuk
.desc = A plush orange fox in an officer's uniform.
diff --git a/Resources/Locale/en-US/_prototypes/_sunrise/entities/objects/specific/engineering/material_bag.ftl b/Resources/Locale/en-US/_prototypes/_sunrise/entities/objects/specific/engineering/material_bag.ftl
index b0365f44f6..7130e7cab5 100644
--- a/Resources/Locale/en-US/_prototypes/_sunrise/entities/objects/specific/engineering/material_bag.ftl
+++ b/Resources/Locale/en-US/_prototypes/_sunrise/entities/objects/specific/engineering/material_bag.ftl
@@ -1,2 +1,2 @@
-ent-MaterialBag = material bag
+ent-MaterialBagSunrise = material bag
.desc = A very roomy engineering bag designed for storing materials.
diff --git a/Resources/Locale/en-US/_strings/_sunrise/advertisements/atm.ftl b/Resources/Locale/en-US/_strings/_sunrise/advertisements/atm.ftl
new file mode 100644
index 0000000000..9914defa90
--- /dev/null
+++ b/Resources/Locale/en-US/_strings/_sunrise/advertisements/atm.ftl
@@ -0,0 +1,8 @@
+advertisement-ATM-1 = Hello! Your money missed you — don’t keep it waiting.
+advertisement-ATM-2 = Try entering your PIN. Just not “1234”, alright?
+advertisement-ATM-3 = Processing your request… let’s hope you’re not asking for everything at once.
+advertisement-ATM-4 = Money loves to be counted. We love fees.
+advertisement-ATM-5 = If you're trying to withdraw millions — we’ll pretend we didn’t hear that.
+advertisement-ATM-6 = The bank thanks you for your trust. And for the service fees.
+advertisement-ATM-7 = Thank you for using our system. We won’t tell the tax office. Probably.
+advertisement-ATM-8 = Your balance is safe. Unlike your self-esteem after checking it.
diff --git a/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/clothing/eyes/glasses.ftl b/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/clothing/eyes/glasses.ftl
index 7c17a8e644..17b6440b55 100644
--- a/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/clothing/eyes/glasses.ftl
+++ b/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/clothing/eyes/glasses.ftl
@@ -14,3 +14,5 @@ ent-ClothingEyesGlassesThermalSyndie = оптический термальный
.desc = Компактный термальный сканер. Оборудован системой свой-чужой. Идеально подходит для выявления и уничтожения сотрудников НаноТрейзен.
ent-ClothingEyesGlassesThermalSec = оптический термальный сканер
.desc = Компактный термальный сканер. Идеально подходит для выявления и уничтожения врагов НаноТрейзен.
+ent-ClothingEyesStuttering = неловкие очки
+ .desc = Очки, которые дают владельцу знания...или заикание
diff --git a/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/clothing/uniforms/jumpsuits.ftl
index 0b90e03c19..4ed3fb0fd8 100644
--- a/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/clothing/uniforms/jumpsuits.ftl
+++ b/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/clothing/uniforms/jumpsuits.ftl
@@ -14,7 +14,7 @@ ent-ClothingUniformJumpsuitNtrepFormal = праздничный костюм п
.desc = Этот костюм лучше не видеть.
ent-ClothingUniformJumpsuitBlueShield = комбинезон офицера «синий щит»
.desc = На стиле.
-ent-ClothingUniformJumpsuitNTRG = униформа Исполнителей Судебных Наказаний
+ent-ClothingUniformJumpsuitNTRG = униформа Исполнителей Судебных Наказаний
.desc = На стиле.
ent-ClothingUniformJumpsuitPrisonerGrey = комбинезон заключённого
.desc = Почему он не оранжевый?
@@ -58,7 +58,7 @@ ent-ClothingUniformTShirtKhakiPants = однотонная футболка и
.desc = Обычная, но функциональная одежда.
ent-ClothingUniformJumpsuitAtmosSyndie = Акробатический комбинезон
.desc = { ent-ClothingUniformJumpsuitAtmos.desc }
-ent-ClothingUniformJumpsuitArmouredBlack = бронированный черный адвокатский костюм
+ent-ClothingUniformJumpsuitArmouredBlack = чёрный адвокатский костюм
.desc = Казалось бы, простой деловой костюм... пока не отлетела пуля...
ent-ClothingUniformJumpsuitCapTurtleneck = черенок капитана
.desc = Истинный черенок капитана.
diff --git a/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/objects/fun/toys.ftl b/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/objects/fun/toys.ftl
index 5f4f8d641a..3ca5ee03ae 100644
--- a/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/objects/fun/toys.ftl
+++ b/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/objects/fun/toys.ftl
@@ -4,7 +4,7 @@ ent-PlushieTwo = Неизвестный
.desc = Плюшевый, вежливый мужчина с утончёнными вкусом и усами.
ent-PlushieThree = Тереза Шарапова
.desc = Плюшевый глава персонала, он вас бесит.
-ent-PlushieUunaMiira = Плюшевая Ууна Ми'Ира
+ent-PlushieUunaKatsuhiro = Плюшевая Ууна Кацухиро
.desc = Тёмная эльфийка со светлой душой.
ent-PlushieFour = Ясли Чунканжук
.desc = Плюшевая оранжевая лиса в форме офицера.
diff --git a/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/objects/specific/engineering/material_bag.ftl b/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/objects/specific/engineering/material_bag.ftl
index 46f75cc06e..a6b8422e1f 100644
--- a/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/objects/specific/engineering/material_bag.ftl
+++ b/Resources/Locale/ru-RU/_prototypes/_sunrise/entities/objects/specific/engineering/material_bag.ftl
@@ -1,2 +1,2 @@
-ent-MaterialBag = сумка для материалов
+ent-MaterialBagSunrise = сумка для материалов
.desc = Очень вместительная инженерная сумка, предназначенная для хранения материалов.
diff --git a/Resources/Locale/ru-RU/_prototypes/entities/clothing/outerclothing/armor.ftl b/Resources/Locale/ru-RU/_prototypes/entities/clothing/outerclothing/armor.ftl
index 1f598309dc..a96b455af7 100644
--- a/Resources/Locale/ru-RU/_prototypes/entities/clothing/outerclothing/armor.ftl
+++ b/Resources/Locale/ru-RU/_prototypes/entities/clothing/outerclothing/armor.ftl
@@ -12,7 +12,7 @@ ent-ClothingOuterArmorBulletproof = пуленепробиваемый жиле
ent-ClothingOuterArmorReflective = отражающий бронежилет
.desc = Бронежилет с усовершенствованной защитой от энергетического оружия.
ent-ClothingOuterArmorRaid = рейдерский костюм Синдиката
- .desc = Довольно гибкий и хорошо защищённый костюм с мощным наплечным фонарём, выполненный в легендарной кроваво-красной цветовой гамме Мародёров Горлекса, обеспечивающий защиту владельца от низкого давления но не космического пространства.
+ .desc = Довольно гибкий и хорошо защищённый костюм с мощным наплечным фонарём, выполненный в легендарной кроваво-красной цветовой гамме Мародёров Горлекса, не обеспечивающий защиту владельца от низкого давления и космического пространства.
ent-ClothingOuterArmorCult = доспехи аколита
.desc = Зловещего вида броня культа, сделанная из костей.
ent-ClothingOuterArmorHeavy = тяжёлый бронекостюм
diff --git a/Resources/Locale/ru-RU/_prototypes/entities/clothing/outerclothing/hardsuits.ftl b/Resources/Locale/ru-RU/_prototypes/entities/clothing/outerclothing/hardsuits.ftl
index 144f884643..6e0bc2b5cd 100644
--- a/Resources/Locale/ru-RU/_prototypes/entities/clothing/outerclothing/hardsuits.ftl
+++ b/Resources/Locale/ru-RU/_prototypes/entities/clothing/outerclothing/hardsuits.ftl
@@ -35,7 +35,7 @@ ent-ClothingOuterHardsuitSyndie = кроваво-красный скафандр
ent-ClothingOuterHardsuitSyndieMedic = кроваво-красный медицинский скафандр
.desc = Тяжелобронированный и манёвренный продвинутый скафандр, предназначенный для полевых медицинских операций.
ent-ClothingOuterHardsuitSyndieElite = элитный скафандр Синдиката
- .desc = Элитная версия кроваво-красного скафандра, отличающаяся повышенной мобильностью и огнеупорностью. Собственность Мародёров Горлекса.
+ .desc = Элитная версия кроваво-красного скафандра, отличающаяся повышенной огнеупорностью. Собственность Мародёров Горлекса.
ent-ClothingOuterHardsuitSyndieCommander = скафандр командира Синдиката
.desc = Усиленная версия кроваво-красного скафандра, предназначенная для командиров оперативных отрядов Синдиката. Броня значительно усилена для ведения смертоносных боёв на передовой.
ent-ClothingOuterHardsuitJuggernaut = костюм джаггернаута Cybersun
diff --git a/Resources/Locale/ru-RU/_strings/_sunrise/advertisements/atm.ftl b/Resources/Locale/ru-RU/_strings/_sunrise/advertisements/atm.ftl
new file mode 100644
index 0000000000..4644f1fa4a
--- /dev/null
+++ b/Resources/Locale/ru-RU/_strings/_sunrise/advertisements/atm.ftl
@@ -0,0 +1,8 @@
+advertisement-ATM-1 = Здравствуйте! Ваши деньги так соскучились — не заставляйте их ждать.
+advertisement-ATM-2 = Попробуйте ввести ПИН. Только не “1234”, ладно?
+advertisement-ATM-3 = Обрабатываю запрос… надеемся, вы не хотите всё сразу.
+advertisement-ATM-4 = Деньги любят счёт. Мы любим комиссии.
+advertisement-ATM-5 = Если хотите снять миллионы — сделаем вид, что не слышали.
+advertisement-ATM-6 = Банк благодарит вас за доверие. И за процент по обслуживанию.
+advertisement-ATM-7 = Спасибо за использование нашей системы. Мы не сообщим налоговой. Наверное.
+advertisement-ATM-8 = Ваш баланс в безопасности. В отличие от вашей самооценки после его просмотра.
diff --git a/Resources/Locale/ru-RU/_strings/_sunrise/escape-menu/ui/options-menu.ftl b/Resources/Locale/ru-RU/_strings/_sunrise/escape-menu/ui/options-menu.ftl
index cb8a05707c..e32e96de21 100644
--- a/Resources/Locale/ru-RU/_strings/_sunrise/escape-menu/ui/options-menu.ftl
+++ b/Resources/Locale/ru-RU/_strings/_sunrise/escape-menu/ui/options-menu.ftl
@@ -24,3 +24,4 @@ ui-options-function-auto-get-up = Автоматически вставать п
ui-options-function-hold-look-up = Удерживать клавишу для прицеливания
ui-options-chat-icons-enable = Использовать иконки профессий в чате
ui-options-chat-pointing-visuals-enable = Отображать указывания с иконками в чате
+ui-options-play-heartbeat-sound = Проигрывать звук сердцебиения
diff --git a/Resources/Locale/ru-RU/_strings/_sunrise/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/_strings/_sunrise/store/uplink-catalog.ftl
index 37be45efd9..6166c5b80e 100644
--- a/Resources/Locale/ru-RU/_strings/_sunrise/store/uplink-catalog.ftl
+++ b/Resources/Locale/ru-RU/_strings/_sunrise/store/uplink-catalog.ftl
@@ -46,6 +46,8 @@ uplink-energy-dome-personal-name = Поясной Энергетический
uplink-energy-dome-personal-desc = Генератор малого щита, защищающий владельца от лазеров и пуль, но не позволяющий самому использовать оружие дальнего боя. Использует батареи.
uplink-energy-dome-backpack-name = Наспинный Энергетический барьер
uplink-energy-dome-backpack-desc = Генератор большого барьера, защищающий владельца от лазеров и пуль, но не позволяющий самому использовать оружие дальнего боя. Использует батареи.
+uplink-armoured-jumpsuit-name = бронированный черный адвокатский костюм
+uplink-armoured-jumpsuit-desc = Казалось бы, простой деловой костюм... пока не отлетела пуля...
## Weapon
@@ -109,7 +111,7 @@ uplink-mech-equipment-vindictor-desc = Тяжёлое оружие массов
uplink-mech-equipment-uvm31-name = UVM-31 "Дрейк"
uplink-mech-equipment-uvm31-desc = Тяжёлое оружие массового поражения разработанное Cybersun на основе минигана. теперь на прочном штативе позволяющем вести огонь прямо из МЕХа!
uplink-mech-teleporter-medium-name = Телепорт среднего меха
-uplink-mech-teleporter-medium-desc = Содержит среднебронированный мех Cybersan с интегрированными цепным мечом и ракетной установкой BRM-8.
+uplink-mech-teleporter-medium-desc = Содержит среднебронированный мех Cybersan с AC-2 "Ультра" и ракетной установкой BRM-8.
uplink-clothing-glasses-nvg-name = Модульные Очки
uplink-clothing-glasses-nvg-desc = Качественно исполненные солнцезащитные очки, производства компании "Горлакс секьюрити". Использует модульные части для улучшения видимости в условиях низкой освещенности. Внимание! Очки не смогут защитить ваши глаза от прямых вспышек.
@@ -147,9 +149,9 @@ uplink-ammo-lmguraniumkit-desc = Перезаряжаю! Содержит 4 ур
uplink-cluster-mini-bomb-name = Кластерная минибомба синдиката
uplink-cluster-mini-bomb-desc = Если вы не преследуете цель точечных диверсий, то этот выбор для вас.
uplink-mech-teleporter-heavy-name = Телепорт тяжелого меха
-uplink-mech-teleporter-heavy-desc = Содержит тяжелобронированный мех Cybersan с интегрированными цепным мечом и ракетной установкой BRM-6.
+uplink-mech-teleporter-heavy-desc = Содержит тяжелобронированный мех Cybersan с AC-2 "Ультра", LBX AC 10 "Залп" и ракетной установкой BRM-6.
uplink-mech-teleporter-assault-name = Телепорт штурмового меха
-uplink-mech-teleporter-assault-desc = Содержит легкобронированный мех Cybersan с интегрированными цепным мечом и легкой ракетной установкой SRM-8.
+uplink-mech-teleporter-assault-desc = Содержит легкобронированный мех Cybersan с LBX AC 10 "Залп" и легкой ракетной установкой SRM-8.
uplink-energy-dome-name = Личный энергетический купол
uplink-energy-dome-desc = Персональный генератор щита, который защищает владельца от лазеров и пуль, но не позволяет использовать дистанционное оружие. Поставляется с небольшим энергетическим элементом.
uplink-syndicate-teleporter-name = Ручной телепорт Синдиката
@@ -158,4 +160,4 @@ uplink-syndicate-teleporter-desc = Экспериментальное устро
## Disruption
uplink-syndicate-law-name = Плата законов (Синдикат)
-uplink-syndicate-law-desc = Электронная плата, содержащая набор законов Синдиката.
\ No newline at end of file
+uplink-syndicate-law-desc = Электронная плата, содержащая набор законов Синдиката.
diff --git a/Resources/Locale/ru-RU/_strings/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/_strings/store/uplink-catalog.ftl
index f66bb36b3e..2bb4fe498f 100644
--- a/Resources/Locale/ru-RU/_strings/store/uplink-catalog.ftl
+++ b/Resources/Locale/ru-RU/_strings/store/uplink-catalog.ftl
@@ -239,9 +239,9 @@ uplink-hardsuit-carp-desc = Выглядит как обычный костюм
uplink-eva-syndie-name = Набор EVA Синдиката
uplink-eva-syndie-desc = Простой EVA-скафандр, который не даёт никакой защиты, кроме той, что необходима для выживания в космосе.
uplink-syndie-raid-name = Рейдерский костюм Синдиката
-uplink-syndie-raid-desc = Очень прочный и довольно гибкий костюм с кроваво-красным бронированием, лучше защищающий от всех обычных видов повреждений, но не предназначенный для выхода в открытый космос хоть и защищает от давления. Поставляется в комплекте с крутым шлемом.
+uplink-syndie-raid-desc = Очень прочный и довольно гибкий костюм с кроваво-красным бронированием, лучше защищающий от всех обычных видов повреждений, но не предназначенный для выхода в открытый космос. Поставляется в комплекте с крутым шлемом.
uplink-hardsuit-syndieelite-name = Элитный скафандр Синдиката
-uplink-hardsuit-syndieelite-desc = Элитная версия кроваво-красного скафандра, отличающаяся повышенной мобильностью и огнеупорностью. Собственность Мародёров Горлекса.
+uplink-hardsuit-syndieelite-desc = Элитная версия кроваво-красного скафандра, отличающаяся повышенной огнеупорностью. Собственность Мародёров Горлекса.
uplink-clothing-outer-hardsuit-juggernaut-name = Скафандр джаггернаута Cybersun
uplink-clothing-outer-hardsuit-juggernaut-desc = Сверхпрочная броня из материалов, испытанных в хромосферном комплексе Тау. Единственное, что сможет вас задержать - этот костюм... и тазеры.
uplink-cyberpen-name = Ручка Cybersun
diff --git a/Resources/Maps/_Sunrise/Nonstations/nukieplanet.yml b/Resources/Maps/_Sunrise/Nonstations/nukieplanet.yml
new file mode 100644
index 0000000000..860ae6b2ca
--- /dev/null
+++ b/Resources/Maps/_Sunrise/Nonstations/nukieplanet.yml
@@ -0,0 +1,25081 @@
+meta:
+ format: 7
+ category: Map
+ engineVersion: 255.1.0
+ forkId: ""
+ forkVersion: ""
+ time: 05/11/2025 10:58:26
+ entityCount: 4145
+maps:
+- 1
+grids:
+- 2
+orphans: []
+nullspace: []
+tilemap:
+ 10: Space
+ 7: FloorArcadeRed
+ 14: FloorAstroSnow
+ 6: FloorBar
+ 4: FloorBasalt
+ 3: FloorDark
+ 15: FloorDarkMini
+ 11: FloorFreezer
+ 19: FloorHullReinforced
+ 16: FloorMining
+ 18: FloorMiningDark
+ 17: FloorMiningLight
+ 0: FloorRGlass
+ 5: FloorReinforced
+ 8: FloorSteel
+ 9: FloorWhite
+ 1: FloorWood
+ 12: FloorWoodTile
+ 13: Lattice
+ 2: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: FTLDestination
+ whitelist:
+ tags:
+ - Syndicate
+ - type: Broadphase
+ - type: OccluderTree
+ - type: Parallax
+ parallax: Sky
+ - type: MapAtmosphere
+ space: False
+ mixture:
+ volume: 2500
+ immutable: True
+ temperature: 248.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 2
+ components:
+ - type: MetaData
+ name: GRLX-220 "Whiskey Outpost"
+ - type: Transform
+ pos: -0.9923513,-0.44010204
+ parent: 1
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAADAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEQAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEAAAAAAABAAAAAAABAAAAAAAAgAAAAAAEgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEAAAAAAABAAAAAAABAAAAAAAAgAAAAAAEgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADAAAAAAADAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADAAAAAAADAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAABAAAAAAAEQAAAAAAEAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEAAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: CAAAAAAACAAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAACgAAAAAACAAAAAAACAAAAAAAAwAAAAAAAwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAABAAAAAAABAAAAAAADQAAAAAADQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: EAAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADQAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADQAAAAAADQAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAADQAAAAAADQAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAADQAAAAAADQAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAEgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA
+ version: 6
+ -2,-1:
+ ind: -2,-1
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAACwAAAAAACwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAADgAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAADgAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAAEAAAAAAAAgAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAAAgAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAwAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAEAAAAAAAEgAAAAAAEAAAAAAAAgAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAEAAAAAAAEgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAA
+ version: 6
+ -2,0:
+ ind: -2,0
+ tiles: EAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAEAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAAEAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAABAAAAAAADgAAAAAADgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAEAAAAAAAEgAAAAAAEgAAAAAAEAAAAAAAAwAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAEAAAAAAAEgAAAAAAEgAAAAAAEAAAAAAAAwAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: EAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAEgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: AQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ -2,-2:
+ ind: -2,-2
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ -2,1:
+ ind: -2,1
+ tiles: DQAAAAAADQAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADQAAAAAADQAAAAAADQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAADQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAADQAAAAAADQAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ -3,-1:
+ ind: -3,-1
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAABAAAAAAABAAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAAEAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAA
+ version: 6
+ -3,0:
+ ind: -3,0
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAAEAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAA
+ version: 6
+ -4,0:
+ ind: -4,0
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAACgAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAADQAAAAAADQAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA
+ version: 6
+ -3,1:
+ ind: -3,1
+ tiles: BAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ -4,-1:
+ ind: -4,-1
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAACgAAAAAADQAAAAAADQAAAAAABAAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ -4,1:
+ ind: -4,1
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 213: -21,-12
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 210: -21,-13
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 212: -23,-13
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkEndN
+ decals:
+ 211: -23,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNe
+ decals:
+ 165: -24,-2
+ 215: -23,-12
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNw
+ decals:
+ 163: -24,-9
+ 166: -22,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerSw
+ decals:
+ 162: -24,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
+ decals:
+ 164: -23,-2
+ 214: -22,-12
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
+ decals:
+ 217: -22,-13
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
+ decals:
+ 157: -24,-7
+ 158: -24,-6
+ 159: -24,-5
+ 160: -24,-4
+ 209: -20,-13
+ 216: -23,-12
+ 536: 3,-16
+ 779: -24,-8
+ 780: -24,-3
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 286: -17,12
+ 617: 10,-8
+ - node:
+ color: '#F9801D93'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 622: 10,-14
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 245: -24,12
+ 248: -24,9
+ 615: 4,-12
+ 616: 6,-8
+ - node:
+ color: '#F9801D93'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 620: 6,-14
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 265: -18,5
+ 266: -17,6
+ 612: 10,-13
+ 613: 5,-18
+ - node:
+ color: '#F9801D93'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 621: 10,-18
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 246: -24,11
+ 247: -24,7
+ 614: 4,-18
+ - node:
+ color: '#F9801D93'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 623: 6,-18
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteEndW
+ decals:
+ 244: -24,5
+ - node:
+ color: '#B02E2694'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 295: -23,6
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 288: -23,5
+ 289: -23,9
+ 290: -18,6
+ 619: 6,-12
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 293: -18,6
+ 294: -23,11
+ 618: 5,-13
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 287: -23,11
+ 291: -23,7
+ 292: -18,11
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteLineE
+ decals:
+ 256: -17,11
+ 257: -17,10
+ 258: -17,9
+ 259: -17,8
+ 260: -17,7
+ 261: -23,7
+ 262: -23,8
+ 263: -23,9
+ 264: -23,10
+ 596: 5,-14
+ 597: 5,-15
+ 598: 5,-16
+ 599: 5,-17
+ 600: 10,-12
+ 601: 10,-11
+ 602: 10,-10
+ 603: 10,-9
+ 664: 3,-16
+ 665: 5,-8
+ 666: 5,-10
+ - node:
+ color: '#F9801D93'
+ id: BrickTileWhiteLineE
+ decals:
+ 624: 10,-17
+ 625: 10,-16
+ 626: 10,-15
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteLineN
+ decals:
+ 276: -23,12
+ 277: -22,12
+ 278: -21,12
+ 279: -20,12
+ 280: -19,12
+ 281: -18,12
+ 282: -22,6
+ 283: -21,6
+ 284: -20,6
+ 285: -19,6
+ 604: 7,-8
+ 605: 8,-8
+ 606: 9,-8
+ 607: 5,-12
+ - node:
+ color: '#F9801D93'
+ id: BrickTileWhiteLineN
+ decals:
+ 627: 7,-14
+ 628: 8,-14
+ 629: 9,-14
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteLineS
+ decals:
+ 267: -23,5
+ 268: -22,5
+ 269: -21,5
+ 270: -20,5
+ 271: -19,5
+ 272: -22,11
+ 273: -21,11
+ 274: -20,11
+ 275: -19,11
+ 296: -20,13
+ 608: 6,-13
+ 609: 7,-13
+ 610: 8,-13
+ 611: 9,-13
+ - node:
+ color: '#B02E2696'
+ id: BrickTileWhiteLineS
+ decals:
+ 300: -19,13
+ 301: -18,13
+ 302: -17,13
+ 303: -22,13
+ 304: -23,13
+ - node:
+ color: '#F9801D93'
+ id: BrickTileWhiteLineS
+ decals:
+ 633: 7,-18
+ 634: 8,-18
+ 635: 9,-18
+ - node:
+ color: '#B02E2693'
+ id: BrickTileWhiteLineW
+ decals:
+ 249: -24,8
+ 250: -18,7
+ 251: -18,8
+ 252: -18,9
+ 253: -18,10
+ 254: -23,10
+ 255: -23,6
+ 588: 6,-11
+ 589: 6,-10
+ 590: 6,-9
+ 591: 4,-13
+ 592: 4,-14
+ 593: 4,-15
+ 594: 4,-16
+ 595: 4,-17
+ - node:
+ color: '#F9801D93'
+ id: BrickTileWhiteLineW
+ decals:
+ 630: 6,-17
+ 631: 6,-16
+ 632: 6,-15
+ - node:
+ color: '#1D1D2193'
+ id: CheckerNESW
+ decals:
+ 107: -21,-1
+ 108: -21,-2
+ 109: -21,-3
+ 110: -21,-4
+ 111: -21,-5
+ 112: -21,-6
+ 113: -21,-7
+ 114: -21,-8
+ 115: -21,-9
+ 116: -21,-10
+ 117: -20,-10
+ 118: -20,-9
+ 119: -20,-8
+ 120: -20,-7
+ 121: -20,-6
+ 122: -20,-5
+ 123: -20,-4
+ 124: -20,-3
+ 125: -20,-2
+ 126: -20,-1
+ 127: -19,-4
+ 128: -19,-5
+ 129: -19,-6
+ 130: -19,-7
+ 131: -18,-7
+ 132: -18,-6
+ 133: -18,-5
+ 134: -18,-4
+ 135: -17,-5
+ 136: -17,-6
+ 137: -16,-6
+ 138: -16,-5
+ - node:
+ color: '#B02E2693'
+ id: CheckerNESW
+ decals:
+ 84: -27,11
+ 85: -26,11
+ 86: -25,11
+ 87: -27,10
+ 88: -26,10
+ 89: -25,10
+ 90: -24,10
+ 92: -26,9
+ 95: -26,8
+ 98: -26,7
+ 100: -27,6
+ 101: -26,6
+ 102: -25,6
+ 103: -24,6
+ 104: -27,5
+ 105: -26,5
+ 106: -25,5
+ - node:
+ color: '#1D1D2193'
+ id: CheckerNWSE
+ decals:
+ 43: -20,16
+ 44: -20,15
+ 45: -20,14
+ 46: -20,13
+ 48: -19,14
+ 49: -19,15
+ 50: -19,16
+ 51: -18,16
+ 52: -18,15
+ 53: -18,14
+ 54: -18,13
+ 55: -17,13
+ 56: -17,14
+ 57: -17,15
+ 58: -17,16
+ 59: -23,13
+ 60: -22,13
+ 299: -19,13
+ - node:
+ color: '#1D1D2196'
+ id: CheckerNWSE
+ decals:
+ 61: -27,11
+ 62: -26,11
+ 63: -25,11
+ 64: -27,10
+ 65: -26,10
+ 66: -25,10
+ 67: -24,10
+ 69: -26,9
+ 72: -26,8
+ 75: -26,7
+ 77: -27,6
+ 78: -26,6
+ 79: -25,6
+ 80: -24,6
+ 81: -27,5
+ 82: -26,5
+ 83: -25,5
+ - node:
+ color: '#B02E2693'
+ id: CheckerNWSE
+ decals:
+ 207: -18,-7
+ 208: -18,-4
+ - node:
+ color: '#B02E2694'
+ id: CheckerNWSE
+ decals:
+ 175: -21,-1
+ 176: -21,-2
+ 177: -21,-3
+ 178: -21,-4
+ 179: -21,-5
+ 180: -21,-6
+ 181: -21,-7
+ 182: -21,-8
+ 183: -21,-9
+ 184: -21,-10
+ 185: -20,-10
+ 186: -20,-9
+ 187: -20,-8
+ 188: -20,-7
+ 189: -20,-6
+ 190: -20,-4
+ 191: -20,-5
+ 192: -20,-3
+ 193: -20,-2
+ 194: -20,-1
+ 195: -19,-4
+ 196: -19,-5
+ 197: -19,-6
+ 198: -19,-7
+ 199: -18,-7
+ 200: -18,-6
+ 201: -18,-5
+ 202: -18,-4
+ 203: -17,-5
+ 204: -17,-6
+ 205: -16,-6
+ 206: -16,-5
+ - node:
+ color: '#B02E2693'
+ id: FullTileOverlayGreyscale
+ decals:
+ 511: 8,-10
+ 512: 7,-10
+ 513: 9,-10
+ 514: 8,-9
+ 515: 8,-11
+ - node:
+ color: '#F9801D93'
+ id: FullTileOverlayGreyscale
+ decals:
+ 583: 8,-17
+ 585: 7,-16
+ 586: 9,-16
+ 587: 8,-15
+ - node:
+ color: '#B02E2693'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 523: 0,-17
+ 524: 1,-17
+ 545: 5,-12
+ 546: 7,-8
+ 547: 8,-8
+ 548: 9,-8
+ 789: 9,2
+ 790: 10,2
+ 791: 11,2
+ 792: 12,2
+ 803: 10,5
+ 804: 11,5
+ 805: 12,5
+ 806: 13,5
+ 807: 14,5
+ 808: 15,5
+ 809: 16,5
+ 810: 10,-1
+ 811: 11,-1
+ 812: 12,-1
+ 813: 13,-1
+ - node:
+ color: '#F9801D93'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 580: 7,-14
+ 581: 8,-14
+ 582: 9,-14
+ - node:
+ color: '#B02E2693'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 521: 0,-14
+ 522: 1,-14
+ 560: 6,-13
+ 561: 7,-13
+ 562: 8,-13
+ 563: 9,-13
+ 785: 9,1
+ 786: 10,1
+ 787: 11,1
+ 788: 12,1
+ 814: 10,-2
+ 815: 11,-2
+ 816: 12,-2
+ 817: 13,-2
+ 818: 14,-2
+ 819: 15,-2
+ 820: 16,-2
+ 821: 10,4
+ 822: 11,4
+ 823: 12,4
+ 824: 13,4
+ - node:
+ color: '#F9801D93'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 571: 7,-18
+ 572: 8,-18
+ 573: 9,-18
+ - node:
+ color: '#B02E2693'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 517: 2,-16
+ 518: 2,-15
+ 537: 4,-13
+ 538: 4,-14
+ 539: 4,-15
+ 540: 4,-16
+ 541: 4,-17
+ 542: 6,-9
+ 543: 6,-10
+ 544: 6,-11
+ 825: 14,0
+ 826: 14,1
+ 827: 14,2
+ 828: 14,3
+ - node:
+ color: '#F9801D93'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 577: 6,-17
+ 578: 6,-16
+ 579: 6,-15
+ - node:
+ color: '#B02E2693'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 519: -1,-16
+ 520: -1,-15
+ 552: 10,-12
+ 553: 10,-11
+ 554: 10,-10
+ 555: 10,-9
+ 556: 5,-17
+ 557: 5,-16
+ 558: 5,-15
+ 559: 5,-14
+ - node:
+ color: '#F9801D93'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 574: 10,-17
+ 575: 10,-16
+ 576: 10,-15
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerSe
+ decals:
+ 510: 2,6
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerSw
+ decals:
+ 509: 0,6
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineS
+ decals:
+ 508: 1,6
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 838: 17,5
+ 839: 17,2
+ 840: 17,-1
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 843: 9,-1
+ 844: 9,5
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 835: 17,-2
+ 836: 17,4
+ 837: 17,1
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 841: 9,4
+ 842: 9,-2
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteInnerNe
+ decals:
+ 661: 7,-11
+ 875: 16,-1
+ 876: 16,2
+ - node:
+ color: '#F9801D93'
+ id: MiniTileWhiteInnerNe
+ decals:
+ 657: 8,-16
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteInnerNw
+ decals:
+ 660: 9,-11
+ 871: 14,-1
+ - node:
+ color: '#F9801D93'
+ id: MiniTileWhiteInnerNw
+ decals:
+ 656: 8,-16
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteInnerSe
+ decals:
+ 663: 7,-9
+ 873: 16,4
+ 874: 16,1
+ - node:
+ color: '#F9801D93'
+ id: MiniTileWhiteInnerSe
+ decals:
+ 659: 8,-16
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteInnerSw
+ decals:
+ 662: 9,-9
+ 872: 14,4
+ - node:
+ color: '#F9801D93'
+ id: MiniTileWhiteInnerSw
+ decals:
+ 658: 8,-16
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteLineN
+ decals:
+ 845: 10,5
+ 846: 11,5
+ 847: 12,5
+ 848: 13,5
+ 849: 14,5
+ 850: 15,5
+ 851: 16,5
+ 859: 10,-1
+ 860: 11,-1
+ 861: 12,-1
+ 862: 13,-1
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteLineS
+ decals:
+ 852: 10,-2
+ 853: 11,-2
+ 854: 12,-2
+ 855: 13,-2
+ 856: 14,-2
+ 857: 15,-2
+ 858: 16,-2
+ 863: 10,4
+ 864: 11,4
+ 865: 12,4
+ 866: 13,4
+ - node:
+ color: '#B02E2693'
+ id: MiniTileWhiteLineW
+ decals:
+ 867: 14,3
+ 868: 14,2
+ 869: 14,1
+ 870: 14,0
+ - node:
+ color: '#B02E2693'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 320: -21,9
+ 527: 2,-17
+ 566: 6,-12
+ 834: 14,-1
+ - node:
+ color: '#F9801D93'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 654: 9,-17
+ - node:
+ color: '#B02E2693'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 318: -20,8
+ 526: -1,-14
+ 565: 5,-13
+ 831: 16,4
+ 832: 16,1
+ - node:
+ color: '#F9801D93'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 652: 7,-15
+ - node:
+ color: '#B02E2693'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 525: 2,-14
+ 833: 14,4
+ - node:
+ color: '#B02E2696'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 319: -21,8
+ - node:
+ color: '#F9801D93'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 653: 9,-15
+ - node:
+ color: '#B02E2693'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 317: -20,9
+ 529: -1,-17
+ 829: 16,2
+ 830: 16,-1
+ - node:
+ color: '#F9801D93'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 655: 7,-17
+ - node:
+ color: '#B02E2693'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 315: -22,9
+ 316: -21,10
+ 532: 6,-8
+ 533: 4,-12
+ 782: 8,2
+ 793: 9,5
+ 794: 9,-1
+ - node:
+ color: '#F9801D93'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 567: 6,-14
+ - node:
+ color: '#B02E2693'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 551: 10,-13
+ 564: 5,-18
+ 783: 13,1
+ 800: 17,-2
+ 801: 17,1
+ 802: 17,4
+ - node:
+ color: '#B02E2696'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 311: -19,8
+ 312: -20,7
+ - node:
+ color: '#F9801D93'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 569: 10,-18
+ - node:
+ color: '#B02E2693'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 550: 4,-18
+ 781: 8,1
+ 795: 9,-2
+ 796: 9,4
+ - node:
+ color: '#B02E2696'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 313: -21,7
+ 314: -22,8
+ - node:
+ color: '#F9801D93'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 568: 6,-18
+ - node:
+ color: '#B02E2693'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 309: -20,10
+ 310: -19,9
+ 549: 10,-8
+ 784: 13,2
+ 797: 17,5
+ 798: 17,2
+ 799: 17,-1
+ - node:
+ color: '#F9801D93'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 570: 10,-14
+ - node:
+ color: '#3AB3DA93'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 668: 3,-14
+ 669: 3,-17
+ - node:
+ color: '#B02E2693'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 325: -10,20
+ 326: -9,16
+ 686: 1,-15
+ - node:
+ color: '#3AB3DA93'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 670: -1,-14
+ - node:
+ color: '#B02E2693'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 323: -13,16
+ 324: -12,20
+ 685: 0,-15
+ - node:
+ color: '#3AB3DA93'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 671: 3,-15
+ 672: 3,-18
+ - node:
+ color: '#B02E2693'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 327: -9,15
+ 328: -10,18
+ 688: 1,-16
+ - node:
+ color: '#3AB3DA93'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 667: -1,-18
+ - node:
+ color: '#B02E2693'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 329: -12,18
+ 330: -13,15
+ 687: 0,-16
+ - node:
+ color: '#B02E26FF'
+ id: WarnCornerNE
+ decals:
+ 223: -27,-1
+ 691: -7,-15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 233: -26,2
+ 739: -3,-14
+ 752: -3,-18
+ 769: -18,-17
+ 899: 12,9
+ - node:
+ color: '#B02E26FF'
+ id: WarnCornerNW
+ decals:
+ 218: -29,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 232: -29,2
+ 738: -5,-14
+ 751: -5,-18
+ 768: -19,-17
+ 908: 9,9
+ - node:
+ color: '#B02E26FF'
+ id: WarnCornerSE
+ decals:
+ 718: -7,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 234: -26,1
+ 753: -3,-20
+ 767: -18,-18
+ 900: 12,7
+ - node:
+ color: '#B02E26FF'
+ id: WarnCornerSW
+ decals:
+ 219: -29,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 235: -29,1
+ 750: -5,-20
+ 770: -19,-18
+ 909: 9,7
+ - node:
+ color: '#3AB3DA93'
+ id: WarnCornerSmallGreyscaleNE
+ decals:
+ 684: 2,-17
+ - node:
+ color: '#3AB3DA93'
+ id: WarnCornerSmallGreyscaleSE
+ decals:
+ 683: 2,-15
+ - node:
+ color: '#B02E2693'
+ id: WarnCornerSmallGreyscaleSE
+ decals:
+ 342: -12,15
+ 343: -10,15
+ - node:
+ color: '#B02E2693'
+ id: WarnCornerSmallGreyscaleSW
+ decals:
+ 340: -12,15
+ 341: -10,15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 729: -14,-19
+ 748: -5,-20
+ 754: -3,-19
+ 755: -4,-18
+ - node:
+ color: '#B02E26FF'
+ id: WarnCornerSmallNW
+ decals:
+ 721: -10,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 749: -3,-20
+ 758: -4,-18
+ 759: -5,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 728: -14,-15
+ 747: -5,-18
+ 760: -3,-19
+ 761: -4,-20
+ - node:
+ color: '#B02E26FF'
+ id: WarnCornerSmallSW
+ decals:
+ 722: -10,-15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 746: -3,-18
+ 756: -4,-20
+ 757: -5,-19
+ - node:
+ color: '#B02E26FF'
+ id: WarnEnd
+ decals:
+ 220: -27,-4
+ - node:
+ color: '#B02E2693'
+ id: WarnEndGreyscaleS
+ decals:
+ 321: -12,14
+ 322: -10,14
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnEndS
+ decals:
+ 762: -3,-16
+ 763: -5,-16
+ - node:
+ color: '#B02E26FF'
+ id: WarnEndW
+ decals:
+ 695: -13,-15
+ 696: -13,-19
+ - node:
+ color: '#B02E26FF'
+ id: WarnFull
+ decals:
+ 689: -9,-14
+ 690: -7,-14
+ 692: -6,-17
+ 693: -11,-20
+ 694: -11,-14
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnFull
+ decals:
+ 228: -26,-1
+ 229: -28,3
+ 230: -27,3
+ 231: -26,3
+ 697: -13,-16
+ 698: -13,-17
+ 699: -13,-18
+ 730: -15,-17
+ 731: -15,-18
+ 741: -4,-19
+ 771: -19,-19
+ 772: -18,-19
+ 901: 13,8
+ - node:
+ color: '#B02E2693'
+ id: WarnFullGreyscale
+ decals:
+ 240: -23,4
+ 241: -22,4
+ 242: -20,4
+ 243: -19,4
+ 339: -11,17
+ 530: 5,-8
+ 531: 5,-10
+ 535: 3,-16
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineE
+ decals:
+ 221: -27,-3
+ 222: -27,-2
+ 715: -7,-16
+ 716: -7,-17
+ 717: -7,-18
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 348: -6,15
+ 725: -14,-16
+ 726: -14,-17
+ 727: -14,-18
+ 736: -3,-15
+ 745: -5,-19
+ 902: 12,8
+ - node:
+ color: '#3AB3DA93'
+ id: WarnLineGreyscaleE
+ decals:
+ 682: 2,-16
+ - node:
+ color: '#B02E2693'
+ id: WarnLineGreyscaleE
+ decals:
+ 338: -10,19
+ - node:
+ color: '#3AB3DA93'
+ id: WarnLineGreyscaleN
+ decals:
+ 676: 0,-14
+ 677: 1,-14
+ 678: 2,-14
+ - node:
+ color: '#B02E2693'
+ id: WarnLineGreyscaleN
+ decals:
+ 333: -12,16
+ 334: -11,16
+ 335: -10,16
+ 336: -11,20
+ - node:
+ color: '#3AB3DA93'
+ id: WarnLineGreyscaleS
+ decals:
+ 673: 0,-18
+ 674: 1,-18
+ 675: 2,-18
+ - node:
+ color: '#3AB3DA93'
+ id: WarnLineGreyscaleW
+ decals:
+ 679: -1,-17
+ 680: -1,-16
+ 681: -1,-15
+ - node:
+ color: '#B02E2693'
+ id: WarnLineGreyscaleW
+ decals:
+ 337: -12,19
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineN
+ decals:
+ 226: -28,-3
+ 700: -12,-15
+ 701: -11,-15
+ 702: -12,-19
+ 703: -11,-19
+ 704: -10,-19
+ 705: -9,-19
+ 706: -8,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 238: -28,1
+ 239: -27,1
+ 743: -4,-18
+ 764: -4,-15
+ 903: 11,7
+ 904: 10,7
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineS
+ decals:
+ 225: -29,-2
+ 713: -10,-16
+ 714: -10,-18
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 349: 2,15
+ 723: -10,-17
+ 734: -5,-15
+ 742: -3,-19
+ 907: 9,8
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineW
+ decals:
+ 224: -28,-1
+ 709: -12,-15
+ 710: -11,-15
+ 711: -10,-15
+ 712: -9,-15
+ 719: -12,-19
+ 720: -11,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 236: -28,2
+ 237: -27,2
+ 724: -8,-15
+ 735: -4,-14
+ 744: -4,-20
+ 905: 11,9
+ 906: 10,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarningLine
+ decals:
+ 344: -5,16
+ 345: 1,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarningLineCorner
+ decals:
+ 347: -6,16
+ 766: -5,-15
+ - node:
+ color: '#B02E26FF'
+ id: WarningLineCornerFlipped
+ decals:
+ 227: -27,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: WarningLineCornerFlipped
+ decals:
+ 346: 2,16
+ 765: -3,-15
+ - node:
+ color: '#B02E2693'
+ id: WarningLineGreyscale
+ decals:
+ 331: -11,15
+ 332: -11,18
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 144: -22,-2
+ 377: 12,18
+ 378: 8,18
+ 393: -2,0
+ 394: 7,0
+ 395: 7,6
+ 396: -1,6
+ 480: 6,5
+ 489: 2,3
+ 880: 17,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 142: -24,-2
+ 171: -19,-8
+ 389: -3,0
+ 390: -3,6
+ 391: 3,6
+ 392: 4,0
+ 487: 0,3
+ 879: 14,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 152: -22,-10
+ 397: -2,-3
+ 398: 7,-3
+ 399: 7,3
+ 400: -2,3
+ 485: 6,-2
+ 486: 2,0
+ 881: 17,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 154: -24,-10
+ 167: -19,-3
+ 385: -3,-3
+ 386: 4,-3
+ 387: -3,3
+ 388: 4,3
+ 488: 0,0
+ 882: 14,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndE
+ decals:
+ 306: -15,11
+ 307: -15,6
+ 351: 8,21
+ 359: 12,21
+ 362: 16,17
+ 369: 16,14
+ 878: 16,6
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndN
+ decals:
+ 483: 6,-1
+ 496: 1,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndS
+ decals:
+ 375: 8,17
+ 376: 12,17
+ 448: 0,-4
+ 449: 2,-4
+ 478: 6,4
+ 497: 1,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndW
+ decals:
+ 305: -16,11
+ 308: -16,6
+ 350: 6,21
+ 360: 10,21
+ 361: 14,17
+ 370: 13,14
+ 371: 6,18
+ 372: 10,18
+ 479: 5,5
+ 484: 5,-2
+ 877: 15,6
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNe
+ decals:
+ 472: 4,3
+ 473: 4,-3
+ 474: -2,-2
+ 475: -1,5
+ 507: 0,0
+ 897: 14,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNw
+ decals:
+ 469: 7,-3
+ 470: 7,3
+ 471: 4,-2
+ 482: 6,-2
+ 504: 2,0
+ 896: 17,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSe
+ decals:
+ 463: -2,-2
+ 464: 0,-3
+ 465: 2,-2
+ 466: -2,5
+ 467: 4,0
+ 468: 4,6
+ 505: 0,3
+ 898: 14,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSw
+ decals:
+ 383: 12,18
+ 384: 8,18
+ 457: 2,-3
+ 458: 4,-2
+ 459: 7,0
+ 460: 7,6
+ 461: 4,5
+ 462: 0,-2
+ 481: 6,5
+ 506: 2,3
+ 895: 17,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 145: -22,-3
+ 146: -22,-4
+ 147: -22,-5
+ 148: -22,-6
+ 149: -22,-7
+ 150: -22,-8
+ 151: -22,-9
+ 410: -2,-1
+ 411: -2,4
+ 412: 2,-3
+ 413: 4,4
+ 414: 4,5
+ 415: 4,-2
+ 416: 4,-1
+ 452: 7,5
+ 453: 7,4
+ 454: 7,-1
+ 455: 7,-2
+ 490: 2,2
+ 491: 2,1
+ 500: 0,1
+ 501: 0,2
+ 887: 17,8
+ 892: 14,8
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 143: -23,-2
+ 172: -18,-8
+ 356: 7,21
+ 357: 11,21
+ 363: 15,17
+ 367: 14,14
+ 368: 15,14
+ 381: 7,18
+ 382: 11,18
+ 430: -1,-2
+ 431: 0,-2
+ 432: 1,-2
+ 433: 2,-2
+ 434: 3,-2
+ 435: 5,-3
+ 436: 6,-3
+ 437: 5,3
+ 438: 6,3
+ 439: 0,5
+ 440: 1,5
+ 441: 2,5
+ 442: 6,6
+ 443: 5,6
+ 444: 4,6
+ 445: -2,6
+ 450: 5,0
+ 451: 6,0
+ 494: 1,3
+ 503: 1,0
+ 774: -23,-3
+ 775: -22,-3
+ 885: 15,9
+ 886: 16,9
+ 889: 15,7
+ 890: 16,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 153: -23,-10
+ 170: -18,-3
+ 355: 7,21
+ 358: 11,21
+ 364: 15,17
+ 365: 14,14
+ 366: 15,14
+ 379: 7,18
+ 380: 11,18
+ 419: 5,0
+ 420: 6,0
+ 421: 5,6
+ 422: 6,6
+ 423: 5,3
+ 424: 6,3
+ 425: -1,5
+ 426: 0,5
+ 427: 1,5
+ 428: 2,5
+ 429: 3,5
+ 446: -1,-2
+ 447: 3,-2
+ 456: 1,-3
+ 495: 1,0
+ 502: 1,3
+ 776: -24,-8
+ 777: -23,-8
+ 778: -22,-8
+ 883: 15,7
+ 884: 16,7
+ 893: 15,9
+ 894: 16,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 155: -24,-9
+ 168: -19,-2
+ 169: -19,-1
+ 173: -19,-10
+ 174: -19,-9
+ 401: -3,4
+ 402: -3,5
+ 403: 4,-1
+ 404: 4,4
+ 405: 0,-3
+ 406: 7,4
+ 407: 7,5
+ 408: 7,-1
+ 409: 7,-2
+ 417: -3,-2
+ 418: -3,-1
+ 492: 0,1
+ 493: 0,2
+ 498: 2,1
+ 499: 2,2
+ 888: 14,8
+ 891: 17,8
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow01
+ decals:
+ 925: -28.838211,10.003334
+ 963: -34.45116,-10.913612
+ 986: -39.00233,-10.966158
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow02
+ decals:
+ 915: -33.9132,8.948431
+ 923: -29.015785,9.065834
+ 931: -35.0312,12.994883
+ 941: -34.005848,-2.9538932
+ 954: -31.005848,-8.851112
+ 970: -35.815968,-7.098296
+ 971: -32.98003,-5.8402333
+ 978: -49.236748,13.974204
+ 982: -56.946365,13.093444
+ 996: -45.475533,-10.919283
+ 1001: -55.154003,-10.872408
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow03
+ decals:
+ 922: -29.039223,9.722084
+ 929: -37.820263,13.604258
+ 938: -31.159527,13.49867
+ 956: -31.005848,-9.601112
+ 969: -35.985725,-4.0748587
+ 976: -49.986748,13.153892
+ 990: -42.021507,-11.013033
+ 1004: -59.915577,-10.780139
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow04
+ decals:
+ 916: -33.741085,9.5812435
+ 930: -37.070263,14.166758
+ 962: -35.552723,-10.890175
+ 979: -49.96331,14.349204
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow05
+ decals:
+ 914: -35.822807,4.102075
+ 921: -31.021996,6.522713
+ 937: -30.268902,13.006482
+ 967: -35.758205,-6.453709
+ 981: -56.172928,13.984069
+ 992: -46.858345,-10.66147
+ 998: -54.82588,-10.75522
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow06
+ decals:
+ 927: -31.923481,7.0455837
+ 933: -35.195263,11.377695
+ 939: -30.901714,13.943982
+ 961: -34.099598,-10.772987
+ 999: -54.849316,-10.427095
+ 1009: -59.939014,-10.592639
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow07
+ decals:
+ 913: -35.916557,5.8130126
+ 934: -34.93745,10.908945
+ 948: -28.943348,-6.2068615
+ 974: -44.33101,13.026731
+ 977: -50.478935,13.411704
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow08
+ decals:
+ 932: -35.007763,11.940195
+ 952: -31.943348,-8.522987
+ 955: -31.802723,-10.163612
+ 973: -43.83882,13.120481
+ 975: -45.121426,13.269242
+ 989: -37.90077,-10.94272
+ 993: -47.725533,-10.989595
+ 997: -49.06147,-10.84897
+ 1006: -59.751514,-10.053576
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow09
+ decals:
+ 924: -31.078285,8.151772
+ 947: -28.943348,-7.1912365
+ 949: -29.880848,-5.9724865
+ 960: -34.685535,-10.913612
+ 965: -35.289455,-5.6333966
+ 1005: -59.376514,-10.077014
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow10
+ decals:
+ 910: -35.658745,5.5552
+ 911: -35.04937,5.039575
+ 912: -35.79937,4.9692626
+ 917: -30.13137,8.004297
+ 935: -31.13609,12.022107
+ 936: -31.018902,12.818982
+ 945: -28,-6
+ 966: -35.476955,-4.7427716
+ 980: -57,14
+ 995: -48.241158,-10.919283
+ 1000: -54.193066,-10.802095
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow11
+ decals:
+ 920: -30.084496,6.2180257
+ 928: -30.681293,5.8268337
+ 942: -33.818348,-2.8691654
+ 944: -29.904285,-9.136549
+ 950: -29.20116,-6.792799
+ 951: -28.615223,-7.856923
+ 957: -30.818348,-8.733925
+ 968: -35.911263,-5.8208966
+ 972: -33.07378,-6.6371083
+ 983: -56.758865,13.187194
+ 985: -58.001053,13.924681
+ 988: -37.97108,-11.31772
+ 991: -41.997704,-11.13022
+ 1003: -54.812393,-9.81772
+ 1008: -60.689014,-10.827014
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow12
+ decals:
+ 919: -30.904808,6.8324227
+ 926: -32.57973,6.787771
+ 946: -28.91991,-6.4412365
+ 959: -33.912098,-10.116737
+ 984: -57.954178,13.984069
+ 1007: -59.118702,-10.100451
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow13
+ decals:
+ 918: -30.97512,7.6058598
+ 940: -32.07359,11.90492
+ 943: -30.068348,-8.4099865
+ 953: -32.037098,-9.226112
+ 958: -33.935535,-10.890175
+ 964: -35.031643,-4.9302716
+ 987: -38.72108,-10.825533
+ 994: -46.459908,-10.895845
+ 1002: -56.091503,-10.94272
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowa1
+ decals:
+ 1012: -44.075035,13.015016
+ 1018: -32.1266,-8.964841
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowa3
+ decals:
+ 1011: -34.8842,10.916055
+ 1017: -35.407944,-10.748452
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowb2
+ decals:
+ 1014: -58.546307,13.882203
+ 1020: -35,6
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowb3
+ decals:
+ 1019: -34.8516,5.4175205
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowc1
+ decals:
+ 1021: -34.40755,12.888948
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowc2
+ decals:
+ 1015: -49.309868,-10.95939
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowc3
+ decals:
+ 1010: -34.954514,-6.121036
+ 1013: -51.109795,13.835328
+ 1016: -56.102448,-10.49064
+ - node:
+ cleanable: True
+ color: '#1D1D2193'
+ id: shop
+ decals:
+ 1022: 8.964565,1.6349294
+ - node:
+ cleanable: True
+ color: '#B02E2693'
+ id: shop
+ decals:
+ 1023: 8.97869,1.6348877
+ - node:
+ cleanable: True
+ color: '#1D1D2193'
+ id: trade
+ decals:
+ 1024: 11.9697,1.6256285
+ - node:
+ cleanable: True
+ color: '#B02E2693'
+ id: trade
+ decals:
+ 1025: 11.985518,1.6256285
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 65535
+ 0,-1:
+ 0: 65525
+ -1,0:
+ 0: 61166
+ 0,1:
+ 0: 4095
+ -1,1:
+ 0: 4094
+ 0,2:
+ 0: 65399
+ 0,3:
+ 0: 32767
+ -1,2:
+ 0: 62259
+ -1,3:
+ 0: 65535
+ 0,4:
+ 0: 30719
+ 1,0:
+ 0: 65535
+ 1,1:
+ 0: 4093
+ 1,2:
+ 0: 65518
+ 1,3:
+ 0: 57343
+ 1,-1:
+ 0: 57328
+ 1,4:
+ 0: 52237
+ 2,2:
+ 0: 61678
+ 2,3:
+ 0: 65504
+ 2,0:
+ 0: 3808
+ 2,1:
+ 0: 57582
+ 2,4:
+ 0: 56607
+ 2,-1:
+ 0: 60934
+ 3,0:
+ 0: 53244
+ 3,1:
+ 0: 55551
+ 3,2:
+ 0: 61663
+ 3,3:
+ 0: 57102
+ 3,-1:
+ 0: 65280
+ 3,4:
+ 0: 37341
+ 4,0:
+ 0: 4913
+ 4,1:
+ 0: 12595
+ 4,2:
+ 0: 61491
+ 4,3:
+ 0: 56783
+ -4,0:
+ 0: 65535
+ -5,0:
+ 0: 65520
+ -4,1:
+ 0: 48015
+ -5,1:
+ 0: 57203
+ -4,2:
+ 0: 48059
+ -5,2:
+ 0: 65023
+ -5,3:
+ 0: 65535
+ -4,3:
+ 0: 41704
+ -4,-1:
+ 0: 8398
+ -4,4:
+ 0: 8746
+ -3,0:
+ 0: 65535
+ -3,1:
+ 0: 65535
+ -3,2:
+ 0: 63487
+ -3,3:
+ 0: 62975
+ -3,-1:
+ 0: 65535
+ -3,4:
+ 0: 30511
+ -2,0:
+ 0: 49147
+ -2,1:
+ 0: 11187
+ -2,2:
+ 0: 64654
+ -2,3:
+ 0: 52991
+ -2,-1:
+ 0: 14720
+ -2,4:
+ 0: 65518
+ -1,4:
+ 0: 65535
+ -1,-1:
+ 0: 61424
+ -4,-4:
+ 0: 7644
+ -4,-5:
+ 0: 56796
+ -5,-4:
+ 0: 28912
+ -4,-3:
+ 0: 14297
+ -4,-2:
+ 0: 61155
+ -5,-2:
+ 0: 65399
+ -3,-4:
+ 0: 35839
+ -3,-3:
+ 0: 65279
+ -3,-2:
+ 0: 65535
+ -3,-5:
+ 0: 65523
+ -2,-4:
+ 0: 15035
+ -2,-3:
+ 0: 65535
+ -2,-2:
+ 0: 6143
+ -2,-5:
+ 0: 64440
+ -1,-4:
+ 0: 3003
+ -1,-3:
+ 0: 65535
+ -1,-2:
+ 0: 3839
+ -1,-5:
+ 0: 39731
+ 1: 8192
+ 0,-4:
+ 0: 4095
+ 0,-3:
+ 0: 65399
+ 0,-2:
+ 0: 32767
+ 0,-5:
+ 0: 65280
+ 1,-4:
+ 0: 65535
+ 1,-3:
+ 0: 57295
+ 1,-2:
+ 0: 61215
+ 1,-5:
+ 0: 65294
+ 2,-4:
+ 0: 30583
+ 2,-3:
+ 0: 30583
+ 2,-2:
+ 0: 65287
+ 2,-5:
+ 0: 30467
+ 3,-4:
+ 2: 3191
+ 3,-3:
+ 0: 63280
+ 3,-2:
+ 0: 32767
+ 3,-5:
+ 2: 13105
+ 4,-3:
+ 0: 4096
+ 4,-2:
+ 0: 307
+ 4,-1:
+ 0: 13056
+ 4,4:
+ 0: 17477
+ 3: 16
+ 0,-6:
+ 0: 61232
+ -1,-6:
+ 0: 240
+ 1,-6:
+ 0: 65280
+ 2,-6:
+ 0: 12544
+ -4,-6:
+ 0: 8182
+ -5,-6:
+ 0: 65280
+ -5,-5:
+ 0: 61152
+ -3,-6:
+ 0: 36624
+ -2,-6:
+ 0: 14312
+ -8,-3:
+ 0: 29440
+ -9,-3:
+ 0: 65521
+ -8,-2:
+ 0: 8191
+ -9,-2:
+ 0: 65535
+ -9,-1:
+ 0: 65535
+ -8,0:
+ 0: 40945
+ -8,-1:
+ 0: 34944
+ -7,-4:
+ 0: 32712
+ -7,-2:
+ 0: 35771
+ -7,-1:
+ 0: 29630
+ -7,-3:
+ 0: 2
+ -6,-4:
+ 0: 57599
+ -6,-3:
+ 0: 65326
+ -6,-2:
+ 0: 65535
+ -6,-1:
+ 0: 65535
+ -6,-5:
+ 0: 64716
+ -5,-3:
+ 0: 30470
+ -5,-1:
+ 0: 30583
+ -9,0:
+ 0: 65535
+ -9,1:
+ 0: 65535
+ -8,1:
+ 0: 63232
+ -8,2:
+ 0: 7423
+ -9,2:
+ 0: 65535
+ -8,3:
+ 0: 4979
+ -9,3:
+ 0: 53247
+ -8,4:
+ 2: 3
+ -7,0:
+ 0: 32752
+ -7,1:
+ 0: 61152
+ -7,2:
+ 0: 61166
+ -6,0:
+ 0: 65520
+ -6,1:
+ 0: 49142
+ -6,2:
+ 0: 64511
+ -6,3:
+ 0: 111
+ -5,4:
+ 0: 15
+ 2: 36352
+ -4,5:
+ 0: 65394
+ -4,6:
+ 0: 6
+ -3,5:
+ 0: 65287
+ -2,5:
+ 0: 65535
+ -2,6:
+ 0: 52750
+ -1,5:
+ 0: 65535
+ -1,6:
+ 0: 65295
+ 0,5:
+ 0: 65399
+ 0,6:
+ 0: 65295
+ 0,7:
+ 0: 6
+ 1,5:
+ 0: 61644
+ 1,6:
+ 0: 31880
+ 2,5:
+ 0: 61661
+ 2,6:
+ 0: 49183
+ 3,5:
+ 0: 64733
+ 3,6:
+ 0: 4099
+ 4,5:
+ 0: 4406
+ -6,-6:
+ 0: 51200
+ -9,4:
+ 2: 14
+ -5,5:
+ 2: 768
+ -12,-3:
+ 0: 8176
+ 2: 57344
+ -13,-3:
+ 0: 8176
+ 2: 57344
+ -11,-3:
+ 0: 8176
+ 2: 57344
+ -10,-3:
+ 0: 36860
+ 2: 28672
+ -10,-4:
+ 2: 57344
+ -10,-2:
+ 2: 52455
+ 0: 8
+ -10,-1:
+ 2: 17476
+ 0: 34952
+ -10,0:
+ 2: 52428
+ -9,-4:
+ 2: 12288
+ -12,3:
+ 0: 4081
+ 2: 14
+ -13,3:
+ 2: 14
+ 0: 4081
+ -11,3:
+ 0: 4081
+ 2: 14
+ -10,3:
+ 2: 15
+ 0: 4080
+ -10,2:
+ 2: 65092
+ 0: 136
+ -10,1:
+ 2: 17476
+ 0: 34952
+ -16,3:
+ 2: 50796
+ 0: 2176
+ -15,3:
+ 0: 4081
+ 2: 4110
+ -14,3:
+ 0: 4081
+ 2: 14
+ -16,-3:
+ 2: 50796
+ 0: 2176
+ -15,-3:
+ 2: 57345
+ 0: 8176
+ -14,-3:
+ 0: 8176
+ 2: 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: 293.14975
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ immutable: True
+ temperature: 248.15
+ 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
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: IFF
+ color: '#A8113CFF'
+- proto: AcousticGuitarInstrument
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: -17.436483,-8.7469225
+ parent: 2
+- proto: AirlockExternalGlassNukeopLocked
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,2.5
+ parent: 2
+ - uid: 5
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,2.5
+ parent: 2
+ - uid: 6
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,1.5
+ parent: 2
+ - uid: 7
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,1.5
+ parent: 2
+- proto: AirlockGlassShuttleSyndicate
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -59.5,12.5
+ parent: 2
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -55.5,12.5
+ parent: 2
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -51.5,12.5
+ parent: 2
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -47.5,12.5
+ parent: 2
+ - uid: 12
+ components:
+ - type: Transform
+ pos: -43.5,12.5
+ parent: 2
+ - uid: 13
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-8.5
+ parent: 2
+ - uid: 14
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,-8.5
+ parent: 2
+ - uid: 15
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -51.5,-8.5
+ parent: 2
+ - uid: 16
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-8.5
+ parent: 2
+ - uid: 17
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-8.5
+ parent: 2
+ - uid: 18
+ components:
+ - type: Transform
+ pos: -59.5,12.5
+ parent: 2
+ - type: GridFill
+ addComponents:
+ - type: NukeOpsShuttle
+ path: /Maps/_Sunrise/Shuttles/infiltrator.yml
+- proto: AirlockSyndicateGlass
+ entities:
+ - uid: 19
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,8.5
+ parent: 2
+- proto: AirlockSyndicateNukeopGlassLocked
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,14.5
+ parent: 2
+ - uid: 21
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-9.5
+ parent: 2
+ - uid: 22
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-7.5
+ parent: 2
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 25
+ components:
+ - type: Transform
+ pos: -8.5,-13.5
+ parent: 2
+ - uid: 26
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-16.5
+ parent: 2
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -6.5,-13.5
+ parent: 2
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -22.5,-10.5
+ parent: 2
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -10.5,17.5
+ parent: 2
+ - uid: 30
+ components:
+ - type: Transform
+ pos: -11.5,14.5
+ parent: 2
+ - uid: 31
+ components:
+ - type: Transform
+ pos: -19.5,4.5
+ parent: 2
+ - uid: 32
+ components:
+ - type: Transform
+ pos: -18.5,4.5
+ parent: 2
+ - uid: 33
+ components:
+ - type: Transform
+ pos: -21.5,4.5
+ parent: 2
+ - uid: 34
+ components:
+ - type: Transform
+ pos: -22.5,4.5
+ parent: 2
+- proto: AirlockSyndicateNukeopLocked
+ entities:
+ - uid: 35
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-12.5
+ parent: 2
+ - uid: 36
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,14.5
+ parent: 2
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 12.5,17.5
+ parent: 2
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 8.5,17.5
+ parent: 2
+ - uid: 39
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-3.5
+ parent: 2
+- proto: AltarHeaven
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -13.5,21.5
+ parent: 2
+- proto: APCHighCapacity
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: -9.5,-13.5
+ parent: 2
+ - uid: 42
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,-6.5
+ parent: 2
+ - uid: 43
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,5.5
+ parent: 2
+ - uid: 44
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,15.5
+ parent: 2
+ - uid: 45
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,16.5
+ parent: 2
+ - uid: 46
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-3.5
+ parent: 2
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-1.5
+ parent: 2
+- proto: AtmosDeviceFanDirectional
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,1.5
+ parent: 2
+ - uid: 50
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,2.5
+ parent: 2
+- proto: BalloonSyn
+ entities:
+ - uid: 51
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.440088,6.710267
+ parent: 2
+- proto: BannerNanotrasen
+ entities:
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 1.5,22.5
+ parent: 2
+- proto: BannerSyndicate
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 2
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -17.5,-3.5
+ parent: 2
+ - uid: 55
+ components:
+ - type: Transform
+ pos: -12.5,3.5
+ parent: 2
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -12.5,0.5
+ parent: 2
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -32.5,4.5
+ parent: 2
+ - uid: 58
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 2
+- proto: BarSignRobustaCafe
+ entities:
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -22.5,0.5
+ parent: 2
+- proto: BasaltRandom
+ entities:
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -17.5,3.5
+ parent: 2
+ - uid: 61
+ components:
+ - type: Transform
+ pos: -15.5,3.5
+ parent: 2
+ - uid: 62
+ components:
+ - type: Transform
+ pos: -13.5,4.5
+ parent: 2
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -12.5,6.5
+ parent: 2
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -12.5,9.5
+ parent: 2
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -12.5,11.5
+ parent: 2
+ - uid: 66
+ components:
+ - type: Transform
+ pos: -12.5,13.5
+ parent: 2
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -14.5,13.5
+ parent: 2
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -14.5,15.5
+ parent: 2
+ - uid: 69
+ components:
+ - type: Transform
+ pos: -14.5,20.5
+ parent: 2
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -14.5,22.5
+ parent: 2
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -12.5,23.5
+ parent: 2
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -11.5,22.5
+ parent: 2
+ - uid: 73
+ components:
+ - type: Transform
+ pos: -9.5,23.5
+ parent: 2
+ - uid: 74
+ components:
+ - type: Transform
+ pos: -7.5,23.5
+ parent: 2
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -5.5,22.5
+ parent: 2
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -5.5,17.5
+ parent: 2
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -4.5,21.5
+ parent: 2
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -1.5,23.5
+ parent: 2
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -2.5,18.5
+ parent: 2
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 2
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -0.5,22.5
+ parent: 2
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 2
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 2
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -6.5,12.5
+ parent: 2
+ - uid: 85
+ components:
+ - type: Transform
+ pos: -9.5,13.5
+ parent: 2
+ - uid: 86
+ components:
+ - type: Transform
+ pos: -10.5,9.5
+ parent: 2
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -9.5,7.5
+ parent: 2
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 2
+ - uid: 89
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 2
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 2
+ - uid: 91
+ components:
+ - type: Transform
+ pos: -6.5,3.5
+ parent: 2
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -8.5,8.5
+ parent: 2
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -5.5,8.5
+ parent: 2
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -4.5,10.5
+ parent: 2
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -2.5,11.5
+ parent: 2
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 2
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 2
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 9.5,11.5
+ parent: 2
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 12.5,11.5
+ parent: 2
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 15.5,11.5
+ parent: 2
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 2
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 2
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 18.5,18.5
+ parent: 2
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 17.5,20.5
+ parent: 2
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 15.5,22.5
+ parent: 2
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 16.5,23.5
+ parent: 2
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 13.5,24.5
+ parent: 2
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 10.5,23.5
+ parent: 2
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 4.5,23.5
+ parent: 2
+ - uid: 111
+ components:
+ - type: Transform
+ pos: -6.5,26.5
+ parent: 2
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -4.5,26.5
+ parent: 2
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 0.5,26.5
+ parent: 2
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 1.5,28.5
+ parent: 2
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -8.5,-1.5
+ parent: 2
+ - uid: 117
+ components:
+ - type: Transform
+ pos: -8.5,-3.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -8.5,-5.5
+ parent: 2
+ - uid: 119
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 2
+ - uid: 120
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 2
+ - uid: 121
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 2
+ - uid: 122
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 4.5,-5.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 7.5,-4.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 9.5,-5.5
+ parent: 2
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 12.5,-4.5
+ parent: 2
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 2
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 132
+ components:
+ - type: Transform
+ pos: -4.5,-10.5
+ parent: 2
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -7.5,-10.5
+ parent: 2
+ - uid: 134
+ components:
+ - type: Transform
+ pos: -6.5,-12.5
+ parent: 2
+ - uid: 135
+ components:
+ - type: Transform
+ pos: -9.5,-9.5
+ parent: 2
+ - uid: 136
+ components:
+ - type: Transform
+ pos: -11.5,-10.5
+ parent: 2
+ - uid: 137
+ components:
+ - type: Transform
+ pos: -12.5,-11.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -11.5,-7.5
+ parent: 2
+ - uid: 139
+ components:
+ - type: Transform
+ pos: -13.5,-5.5
+ parent: 2
+ - uid: 140
+ components:
+ - type: Transform
+ pos: -11.5,-3.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: -11.5,-0.5
+ parent: 2
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -14.5,0.5
+ parent: 2
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -16.5,1.5
+ parent: 2
+ - uid: 145
+ components:
+ - type: Transform
+ pos: -20.5,2.5
+ parent: 2
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -22.5,1.5
+ parent: 2
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -23.5,3.5
+ parent: 2
+ - uid: 148
+ components:
+ - type: Transform
+ pos: -14.5,-3.5
+ parent: 2
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -15.5,-12.5
+ parent: 2
+ - uid: 150
+ components:
+ - type: Transform
+ pos: -15.5,-9.5
+ parent: 2
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -14.5,-7.5
+ parent: 2
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -16.5,-14.5
+ parent: 2
+ - uid: 153
+ components:
+ - type: Transform
+ pos: -20.5,-14.5
+ parent: 2
+ - uid: 154
+ components:
+ - type: Transform
+ pos: -23.5,-15.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -20.5,-17.5
+ parent: 2
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -21.5,-20.5
+ parent: 2
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -19.5,-21.5
+ parent: 2
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -17.5,-20.5
+ parent: 2
+ - uid: 159
+ components:
+ - type: Transform
+ pos: -14.5,-22.5
+ parent: 2
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -12.5,-21.5
+ parent: 2
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -8.5,-21.5
+ parent: 2
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -6.5,-20.5
+ parent: 2
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 164
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 2
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 1.5,-22.5
+ parent: 2
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 4.5,-21.5
+ parent: 2
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 13.5,-8.5
+ parent: 2
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 14.5,-5.5
+ parent: 2
+ - uid: 171
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 2
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 1.5,19.5
+ parent: 2
+- proto: BaseBallBat
+ entities:
+ - uid: 173
+ components:
+ - type: Transform
+ pos: -8.299296,16.696932
+ parent: 2
+- proto: Bed
+ entities:
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 15.5,17.5
+ parent: 2
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 2
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 2
+- proto: BedsheetMedical
+ entities:
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 2
+- proto: BedsheetSyndie
+ entities:
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 2
+ - uid: 179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,21.5
+ parent: 2
+- proto: BedsheetUSA
+ entities:
+ - uid: 180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,17.5
+ parent: 2
+- proto: BigBox
+ entities:
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 6.5809565,18.617636
+ parent: 2
+- proto: BlankHandyFlag
+ entities:
+ - uid: 182
+ components:
+ - type: Transform
+ pos: -9.507064,18.51682
+ parent: 2
+- proto: BlastDoor
+ entities:
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 2
+- proto: BlockGameArcade
+ entities:
+ - uid: 185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 2
+ - uid: 186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-0.5
+ parent: 2
+ - uid: 187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-1.5
+ parent: 2
+- proto: BookshelfFilled
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 2
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 2
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 2
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+- proto: BoozeDispenser
+ entities:
+ - uid: 192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-6.5
+ parent: 2
+- proto: BorgCharger
+ entities:
+ - uid: 193
+ components:
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 2
+ - type: EntityStorage
+ open: True
+ removedMasks: 20
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.45,-0.45
+ - 0.45,-0.45
+ - 0.45,0.45
+ - -0.45,0.45
+ mask:
+ - Impassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 190
+ hard: True
+ restitution: 0
+ friction: 0.4
+- proto: BoxBeaker
+ entities:
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 6.466056,-13.195493
+ parent: 2
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 6.684806,-13.382993
+ parent: 2
+- proto: BoxCardboard
+ entities:
+ - uid: 197
+ components:
+ - type: Transform
+ parent: 196
+ - type: Storage
+ storedItems:
+ 198:
+ position: 0,0
+ _rotation: South
+ 199:
+ position: 1,0
+ _rotation: South
+ 200:
+ position: 2,0
+ _rotation: South
+ 201:
+ position: 0,1
+ _rotation: South
+ 202:
+ position: 1,1
+ _rotation: South
+ 203:
+ position: 2,1
+ _rotation: South
+ 204:
+ position: 0,2
+ _rotation: South
+ 205:
+ position: 1,2
+ _rotation: South
+ 206:
+ position: 2,2
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 198
+ - 199
+ - 200
+ - 201
+ - 202
+ - 203
+ - 204
+ - 205
+ - 206
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 207
+ components:
+ - type: Transform
+ parent: 196
+ - type: Storage
+ storedItems:
+ 208:
+ position: 0,0
+ _rotation: South
+ 209:
+ position: 1,0
+ _rotation: South
+ 210:
+ position: 2,0
+ _rotation: South
+ 211:
+ position: 0,1
+ _rotation: South
+ 212:
+ position: 1,1
+ _rotation: South
+ 213:
+ position: 2,1
+ _rotation: South
+ 214:
+ position: 0,2
+ _rotation: South
+ 215:
+ position: 1,2
+ _rotation: South
+ 216:
+ position: 2,2
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 208
+ - 209
+ - 210
+ - 211
+ - 212
+ - 213
+ - 214
+ - 215
+ - 216
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BoxFlashbang
+ entities:
+ - uid: 218
+ components:
+ - type: Transform
+ pos: -26.558594,11.845013
+ parent: 2
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 219
+ components:
+ - type: Transform
+ pos: -19.33737,10.561739
+ parent: 2
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 17.418386,2.5478735
+ parent: 2
+- proto: BoxMagazinePistolCaselessRiflePractice
+ entities:
+ - uid: 4143
+ components:
+ - type: Transform
+ pos: -1.8658211,16.573029
+ parent: 2
+- proto: BoxMagazinePistolSubMachineGunPractice
+ entities:
+ - uid: 221
+ components:
+ - type: Transform
+ pos: -3.5482523,15.670155
+ parent: 2
+- proto: BoxPillCanister
+ entities:
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 9.151467,-7.2861457
+ parent: 2
+- proto: BoxShotgunPractice
+ entities:
+ - uid: 223
+ components:
+ - type: Transform
+ pos: -1.2304842,16.69251
+ parent: 2
+- proto: BoxStinger
+ entities:
+ - uid: 224
+ components:
+ - type: Transform
+ pos: -26.220467,11.821575
+ parent: 2
+- proto: BoxSyringe
+ entities:
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 9.620217,-7.2861457
+ parent: 2
+- proto: BoxTearGas
+ entities:
+ - uid: 226
+ components:
+ - type: Transform
+ pos: -26.431404,11.68095
+ parent: 2
+- proto: BoxVial
+ entities:
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 10.184806,-13.117368
+ parent: 2
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 10.419181,-13.336118
+ parent: 2
+- proto: Bucket
+ entities:
+ - uid: 229
+ components:
+ - type: Transform
+ pos: -18.033602,-11.12535
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ pos: -9.35437,20.701128
+ parent: 2
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-15.5
+ parent: 2
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,6.5
+ parent: 2
+ - uid: 233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-1.5
+ parent: 2
+- proto: CableApcExtension
+ entities:
+ - uid: 234
+ components:
+ - type: Transform
+ pos: -25.5,1.5
+ parent: 2
+ - uid: 235
+ components:
+ - type: Transform
+ pos: -24.5,1.5
+ parent: 2
+ - uid: 236
+ components:
+ - type: Transform
+ pos: -5.5,15.5
+ parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ pos: -16.5,-6.5
+ parent: 2
+ - uid: 238
+ components:
+ - type: Transform
+ pos: -16.5,-5.5
+ parent: 2
+ - uid: 239
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 2
+ - uid: 240
+ components:
+ - type: Transform
+ pos: -17.5,-4.5
+ parent: 2
+ - uid: 241
+ components:
+ - type: Transform
+ pos: -18.5,-4.5
+ parent: 2
+ - uid: 242
+ components:
+ - type: Transform
+ pos: -19.5,-4.5
+ parent: 2
+ - uid: 243
+ components:
+ - type: Transform
+ pos: -19.5,-3.5
+ parent: 2
+ - uid: 244
+ components:
+ - type: Transform
+ pos: -19.5,-2.5
+ parent: 2
+ - uid: 245
+ components:
+ - type: Transform
+ pos: -19.5,-1.5
+ parent: 2
+ - uid: 246
+ components:
+ - type: Transform
+ pos: -19.5,-0.5
+ parent: 2
+ - uid: 247
+ components:
+ - type: Transform
+ pos: -20.5,-1.5
+ parent: 2
+ - uid: 248
+ components:
+ - type: Transform
+ pos: -21.5,-1.5
+ parent: 2
+ - uid: 249
+ components:
+ - type: Transform
+ pos: -22.5,-1.5
+ parent: 2
+ - uid: 250
+ components:
+ - type: Transform
+ pos: -20.5,-4.5
+ parent: 2
+ - uid: 251
+ components:
+ - type: Transform
+ pos: -21.5,-4.5
+ parent: 2
+ - uid: 252
+ components:
+ - type: Transform
+ pos: -22.5,-4.5
+ parent: 2
+ - uid: 253
+ components:
+ - type: Transform
+ pos: -19.5,-5.5
+ parent: 2
+ - uid: 254
+ components:
+ - type: Transform
+ pos: -19.5,-6.5
+ parent: 2
+ - uid: 255
+ components:
+ - type: Transform
+ pos: -19.5,-7.5
+ parent: 2
+ - uid: 256
+ components:
+ - type: Transform
+ pos: -20.5,-7.5
+ parent: 2
+ - uid: 257
+ components:
+ - type: Transform
+ pos: -21.5,-7.5
+ parent: 2
+ - uid: 258
+ components:
+ - type: Transform
+ pos: -22.5,-7.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ pos: -19.5,-8.5
+ parent: 2
+ - uid: 260
+ components:
+ - type: Transform
+ pos: -18.5,-8.5
+ parent: 2
+ - uid: 261
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 2
+ - uid: 262
+ components:
+ - type: Transform
+ pos: -20.5,-9.5
+ parent: 2
+ - uid: 263
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 2
+ - uid: 264
+ components:
+ - type: Transform
+ pos: -22.5,-9.5
+ parent: 2
+ - uid: 265
+ components:
+ - type: Transform
+ pos: -22.5,-10.5
+ parent: 2
+ - uid: 266
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 2
+ - uid: 267
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 2
+ - uid: 268
+ components:
+ - type: Transform
+ pos: -21.5,-12.5
+ parent: 2
+ - uid: 269
+ components:
+ - type: Transform
+ pos: -20.5,-12.5
+ parent: 2
+ - uid: 270
+ components:
+ - type: Transform
+ pos: -19.5,-12.5
+ parent: 2
+ - uid: 271
+ components:
+ - type: Transform
+ pos: -18.5,-12.5
+ parent: 2
+ - uid: 272
+ components:
+ - type: Transform
+ pos: -15.5,5.5
+ parent: 2
+ - uid: 273
+ components:
+ - type: Transform
+ pos: -15.5,6.5
+ parent: 2
+ - uid: 274
+ components:
+ - type: Transform
+ pos: -15.5,7.5
+ parent: 2
+ - uid: 275
+ components:
+ - type: Transform
+ pos: -15.5,8.5
+ parent: 2
+ - uid: 276
+ components:
+ - type: Transform
+ pos: -15.5,9.5
+ parent: 2
+ - uid: 277
+ components:
+ - type: Transform
+ pos: -15.5,10.5
+ parent: 2
+ - uid: 278
+ components:
+ - type: Transform
+ pos: -15.5,11.5
+ parent: 2
+ - uid: 279
+ components:
+ - type: Transform
+ pos: -16.5,11.5
+ parent: 2
+ - uid: 280
+ components:
+ - type: Transform
+ pos: -17.5,11.5
+ parent: 2
+ - uid: 281
+ components:
+ - type: Transform
+ pos: -17.5,13.5
+ parent: 2
+ - uid: 282
+ components:
+ - type: Transform
+ pos: -17.5,14.5
+ parent: 2
+ - uid: 283
+ components:
+ - type: Transform
+ pos: -17.5,15.5
+ parent: 2
+ - uid: 284
+ components:
+ - type: Transform
+ pos: -17.5,12.5
+ parent: 2
+ - uid: 285
+ components:
+ - type: Transform
+ pos: -17.5,16.5
+ parent: 2
+ - uid: 286
+ components:
+ - type: Transform
+ pos: -18.5,11.5
+ parent: 2
+ - uid: 287
+ components:
+ - type: Transform
+ pos: -19.5,11.5
+ parent: 2
+ - uid: 288
+ components:
+ - type: Transform
+ pos: -20.5,11.5
+ parent: 2
+ - uid: 289
+ components:
+ - type: Transform
+ pos: -21.5,11.5
+ parent: 2
+ - uid: 290
+ components:
+ - type: Transform
+ pos: -22.5,11.5
+ parent: 2
+ - uid: 291
+ components:
+ - type: Transform
+ pos: -22.5,10.5
+ parent: 2
+ - uid: 292
+ components:
+ - type: Transform
+ pos: -22.5,9.5
+ parent: 2
+ - uid: 293
+ components:
+ - type: Transform
+ pos: -22.5,8.5
+ parent: 2
+ - uid: 294
+ components:
+ - type: Transform
+ pos: -22.5,7.5
+ parent: 2
+ - uid: 295
+ components:
+ - type: Transform
+ pos: -22.5,6.5
+ parent: 2
+ - uid: 296
+ components:
+ - type: Transform
+ pos: -21.5,6.5
+ parent: 2
+ - uid: 297
+ components:
+ - type: Transform
+ pos: -20.5,6.5
+ parent: 2
+ - uid: 298
+ components:
+ - type: Transform
+ pos: -19.5,6.5
+ parent: 2
+ - uid: 299
+ components:
+ - type: Transform
+ pos: -18.5,6.5
+ parent: 2
+ - uid: 300
+ components:
+ - type: Transform
+ pos: -17.5,6.5
+ parent: 2
+ - uid: 301
+ components:
+ - type: Transform
+ pos: -16.5,6.5
+ parent: 2
+ - uid: 302
+ components:
+ - type: Transform
+ pos: -20.5,5.5
+ parent: 2
+ - uid: 303
+ components:
+ - type: Transform
+ pos: -23.5,10.5
+ parent: 2
+ - uid: 304
+ components:
+ - type: Transform
+ pos: -24.5,10.5
+ parent: 2
+ - uid: 305
+ components:
+ - type: Transform
+ pos: -25.5,10.5
+ parent: 2
+ - uid: 306
+ components:
+ - type: Transform
+ pos: -25.5,9.5
+ parent: 2
+ - uid: 307
+ components:
+ - type: Transform
+ pos: -25.5,8.5
+ parent: 2
+ - uid: 308
+ components:
+ - type: Transform
+ pos: -25.5,7.5
+ parent: 2
+ - uid: 309
+ components:
+ - type: Transform
+ pos: -25.5,6.5
+ parent: 2
+ - uid: 310
+ components:
+ - type: Transform
+ pos: -24.5,6.5
+ parent: 2
+ - uid: 311
+ components:
+ - type: Transform
+ pos: -23.5,6.5
+ parent: 2
+ - uid: 312
+ components:
+ - type: Transform
+ pos: -26.5,8.5
+ parent: 2
+ - uid: 313
+ components:
+ - type: Transform
+ pos: -13.5,15.5
+ parent: 2
+ - uid: 314
+ components:
+ - type: Transform
+ pos: -12.5,15.5
+ parent: 2
+ - uid: 315
+ components:
+ - type: Transform
+ pos: -11.5,15.5
+ parent: 2
+ - uid: 316
+ components:
+ - type: Transform
+ pos: -10.5,15.5
+ parent: 2
+ - uid: 317
+ components:
+ - type: Transform
+ pos: -9.5,15.5
+ parent: 2
+ - uid: 318
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 2
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -10.5,16.5
+ parent: 2
+ - uid: 321
+ components:
+ - type: Transform
+ pos: -10.5,17.5
+ parent: 2
+ - uid: 322
+ components:
+ - type: Transform
+ pos: -10.5,18.5
+ parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ pos: -10.5,19.5
+ parent: 2
+ - uid: 324
+ components:
+ - type: Transform
+ pos: -10.5,14.5
+ parent: 2
+ - uid: 325
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 2
+ - uid: 326
+ components:
+ - type: Transform
+ pos: -9.5,13.5
+ parent: 2
+ - uid: 327
+ components:
+ - type: Transform
+ pos: -8.5,13.5
+ parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ pos: -7.5,13.5
+ parent: 2
+ - uid: 329
+ components:
+ - type: Transform
+ pos: -6.5,13.5
+ parent: 2
+ - uid: 330
+ components:
+ - type: Transform
+ pos: -5.5,13.5
+ parent: 2
+ - uid: 331
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 2
+ - uid: 332
+ components:
+ - type: Transform
+ pos: -3.5,13.5
+ parent: 2
+ - uid: 333
+ components:
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 2
+ - uid: 334
+ components:
+ - type: Transform
+ pos: -1.5,13.5
+ parent: 2
+ - uid: 335
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 2
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 2
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 2
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 2
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 2
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 2
+ - uid: 342
+ components:
+ - type: Transform
+ pos: -4.5,14.5
+ parent: 2
+ - uid: 343
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 2
+ - uid: 344
+ components:
+ - type: Transform
+ pos: -3.5,15.5
+ parent: 2
+ - uid: 345
+ components:
+ - type: Transform
+ pos: -2.5,15.5
+ parent: 2
+ - uid: 346
+ components:
+ - type: Transform
+ pos: -1.5,15.5
+ parent: 2
+ - uid: 347
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 2
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 2
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 2
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 3.5,23.5
+ parent: 2
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 2
+ - uid: 353
+ components:
+ - type: Transform
+ pos: 3.5,24.5
+ parent: 2
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 2.5,24.5
+ parent: 2
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 2
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 0.5,24.5
+ parent: 2
+ - uid: 357
+ components:
+ - type: Transform
+ pos: -0.5,24.5
+ parent: 2
+ - uid: 358
+ components:
+ - type: Transform
+ pos: -1.5,24.5
+ parent: 2
+ - uid: 359
+ components:
+ - type: Transform
+ pos: -2.5,24.5
+ parent: 2
+ - uid: 360
+ components:
+ - type: Transform
+ pos: -3.5,24.5
+ parent: 2
+ - uid: 361
+ components:
+ - type: Transform
+ pos: -4.5,24.5
+ parent: 2
+ - uid: 362
+ components:
+ - type: Transform
+ pos: -5.5,24.5
+ parent: 2
+ - uid: 363
+ components:
+ - type: Transform
+ pos: -6.5,24.5
+ parent: 2
+ - uid: 364
+ components:
+ - type: Transform
+ pos: -6.5,23.5
+ parent: 2
+ - uid: 365
+ components:
+ - type: Transform
+ pos: -6.5,22.5
+ parent: 2
+ - uid: 366
+ components:
+ - type: Transform
+ pos: -6.5,21.5
+ parent: 2
+ - uid: 367
+ components:
+ - type: Transform
+ pos: -6.5,19.5
+ parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 2.5,17.5
+ parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 2
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 2
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 12.5,16.5
+ parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 11.5,16.5
+ parent: 2
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 2
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 2
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 2
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 8.5,17.5
+ parent: 2
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 2
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 2
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 2
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 2
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 12.5,17.5
+ parent: 2
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 12.5,18.5
+ parent: 2
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 12.5,19.5
+ parent: 2
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 12.5,20.5
+ parent: 2
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 11.5,20.5
+ parent: 2
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 12.5,15.5
+ parent: 2
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 2
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 13.5,14.5
+ parent: 2
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 2
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 15.5,14.5
+ parent: 2
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 15.5,15.5
+ parent: 2
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 15.5,16.5
+ parent: 2
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 2
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 2
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 2
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 2
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 7.5,14.5
+ parent: 2
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 2
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 5.5,-2.5
+ parent: 2
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 2
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 406
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 407
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 408
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 410
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 411
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 412
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 413
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 414
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 415
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 416
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 2
+ - uid: 417
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 418
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 2
+ - uid: 419
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 2
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 2
+ - uid: 422
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 2
+ - uid: 423
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 4.5,5.5
+ parent: 2
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 5.5,5.5
+ parent: 2
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 6.5,5.5
+ parent: 2
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 2
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 2
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 2
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 2
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 6.5,-0.5
+ parent: 2
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 2
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 2
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 2
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 2
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 2
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 2
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 447
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 2
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 2
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 2
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 2
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 2
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 2
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 2
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 2
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 2
+ - uid: 457
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 2
+ - uid: 458
+ components:
+ - type: Transform
+ pos: 15.5,3.5
+ parent: 2
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 2
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 15.5,5.5
+ parent: 2
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 15.5,0.5
+ parent: 2
+ - uid: 462
+ components:
+ - type: Transform
+ pos: 15.5,-0.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 15.5,-1.5
+ parent: 2
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 14.5,-1.5
+ parent: 2
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 13.5,-1.5
+ parent: 2
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 12.5,-1.5
+ parent: 2
+ - uid: 467
+ components:
+ - type: Transform
+ pos: 11.5,-1.5
+ parent: 2
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 2
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 14.5,5.5
+ parent: 2
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 13.5,5.5
+ parent: 2
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 11.5,5.5
+ parent: 2
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 10.5,5.5
+ parent: 2
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 12.5,5.5
+ parent: 2
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 15.5,6.5
+ parent: 2
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 2
+ - uid: 476
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 2
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 2
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 2
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 2
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 2
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 2
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 16.5,1.5
+ parent: 2
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 11.5,8.5
+ parent: 2
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 16.5,5.5
+ parent: 2
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 16.5,-1.5
+ parent: 2
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 2
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 4.5,-12.5
+ parent: 2
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 2
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 4.5,-14.5
+ parent: 2
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 3.5,-15.5
+ parent: 2
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 2
+ - uid: 494
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 2
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 0.5,-13.5
+ parent: 2
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 2
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 2
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 2
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 2
+ - uid: 504
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 505
+ components:
+ - type: Transform
+ pos: 7.5,-16.5
+ parent: 2
+ - uid: 506
+ components:
+ - type: Transform
+ pos: 8.5,-16.5
+ parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 9.5,-16.5
+ parent: 2
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 9.5,-14.5
+ parent: 2
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 9.5,-15.5
+ parent: 2
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 10.5,-16.5
+ parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
+ - uid: 513
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 11.5,-16.5
+ parent: 2
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 2
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 2
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 2
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 6.5,-11.5
+ parent: 2
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 2
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 8.5,-11.5
+ parent: 2
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 9.5,-11.5
+ parent: 2
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 10.5,-11.5
+ parent: 2
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 2
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 10.5,-9.5
+ parent: 2
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 2
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 10.5,-7.5
+ parent: 2
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 8.5,-7.5
+ parent: 2
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 7.5,-7.5
+ parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 6.5,-7.5
+ parent: 2
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 6.5,-8.5
+ parent: 2
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 2
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 6.5,-10.5
+ parent: 2
+ - uid: 533
+ components:
+ - type: Transform
+ pos: 7.5,-13.5
+ parent: 2
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 7.5,-12.5
+ parent: 2
+ - uid: 535
+ components:
+ - type: Transform
+ pos: -9.5,-13.5
+ parent: 2
+ - uid: 536
+ components:
+ - type: Transform
+ pos: -9.5,-14.5
+ parent: 2
+ - uid: 537
+ components:
+ - type: Transform
+ pos: -10.5,-14.5
+ parent: 2
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -11.5,-14.5
+ parent: 2
+ - uid: 539
+ components:
+ - type: Transform
+ pos: -12.5,-14.5
+ parent: 2
+ - uid: 540
+ components:
+ - type: Transform
+ pos: -13.5,-14.5
+ parent: 2
+ - uid: 541
+ components:
+ - type: Transform
+ pos: -13.5,-15.5
+ parent: 2
+ - uid: 542
+ components:
+ - type: Transform
+ pos: -13.5,-16.5
+ parent: 2
+ - uid: 543
+ components:
+ - type: Transform
+ pos: -13.5,-17.5
+ parent: 2
+ - uid: 544
+ components:
+ - type: Transform
+ pos: -13.5,-18.5
+ parent: 2
+ - uid: 545
+ components:
+ - type: Transform
+ pos: -12.5,-18.5
+ parent: 2
+ - uid: 546
+ components:
+ - type: Transform
+ pos: -11.5,-18.5
+ parent: 2
+ - uid: 547
+ components:
+ - type: Transform
+ pos: -10.5,-18.5
+ parent: 2
+ - uid: 548
+ components:
+ - type: Transform
+ pos: -9.5,-18.5
+ parent: 2
+ - uid: 549
+ components:
+ - type: Transform
+ pos: -8.5,-18.5
+ parent: 2
+ - uid: 550
+ components:
+ - type: Transform
+ pos: -7.5,-18.5
+ parent: 2
+ - uid: 551
+ components:
+ - type: Transform
+ pos: -6.5,-18.5
+ parent: 2
+ - uid: 552
+ components:
+ - type: Transform
+ pos: -6.5,-17.5
+ parent: 2
+ - uid: 553
+ components:
+ - type: Transform
+ pos: -6.5,-16.5
+ parent: 2
+ - uid: 554
+ components:
+ - type: Transform
+ pos: -6.5,-15.5
+ parent: 2
+ - uid: 555
+ components:
+ - type: Transform
+ pos: -6.5,-14.5
+ parent: 2
+ - uid: 556
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 2
+ - uid: 557
+ components:
+ - type: Transform
+ pos: -8.5,-14.5
+ parent: 2
+ - uid: 558
+ components:
+ - type: Transform
+ pos: -5.5,-16.5
+ parent: 2
+ - uid: 559
+ components:
+ - type: Transform
+ pos: -4.5,-16.5
+ parent: 2
+ - uid: 560
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 561
+ components:
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 2
+ - uid: 562
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 2
+ - uid: 563
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 564
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+ - uid: 565
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+ - uid: 566
+ components:
+ - type: Transform
+ pos: -7.5,-16.5
+ parent: 2
+ - uid: 567
+ components:
+ - type: Transform
+ pos: -8.5,-16.5
+ parent: 2
+ - uid: 568
+ components:
+ - type: Transform
+ pos: -9.5,-16.5
+ parent: 2
+ - uid: 569
+ components:
+ - type: Transform
+ pos: -14.5,-17.5
+ parent: 2
+ - uid: 570
+ components:
+ - type: Transform
+ pos: -15.5,-17.5
+ parent: 2
+ - uid: 571
+ components:
+ - type: Transform
+ pos: -16.5,-17.5
+ parent: 2
+ - uid: 572
+ components:
+ - type: Transform
+ pos: -17.5,-17.5
+ parent: 2
+ - uid: 573
+ components:
+ - type: Transform
+ pos: -15.5,-4.5
+ parent: 2
+ - uid: 574
+ components:
+ - type: Transform
+ pos: -14.5,-4.5
+ parent: 2
+ - uid: 575
+ components:
+ - type: Transform
+ pos: -13.5,-4.5
+ parent: 2
+ - uid: 576
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 2
+ - uid: 577
+ components:
+ - type: Transform
+ pos: -11.5,-4.5
+ parent: 2
+ - uid: 578
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 2
+ - uid: 579
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 2
+ - uid: 580
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 581
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 582
+ components:
+ - type: Transform
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 583
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 584
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 585
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 2
+ - uid: 586
+ components:
+ - type: Transform
+ pos: -10.5,-6.5
+ parent: 2
+ - uid: 587
+ components:
+ - type: Transform
+ pos: -10.5,-7.5
+ parent: 2
+ - uid: 588
+ components:
+ - type: Transform
+ pos: -10.5,-8.5
+ parent: 2
+ - uid: 589
+ components:
+ - type: Transform
+ pos: -8.5,-13.5
+ parent: 2
+ - uid: 590
+ components:
+ - type: Transform
+ pos: -8.5,-12.5
+ parent: 2
+ - uid: 591
+ components:
+ - type: Transform
+ pos: -8.5,-11.5
+ parent: 2
+ - uid: 592
+ components:
+ - type: Transform
+ pos: -8.5,-10.5
+ parent: 2
+ - uid: 593
+ components:
+ - type: Transform
+ pos: -8.5,-9.5
+ parent: 2
+ - uid: 594
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 2
+ - uid: 595
+ components:
+ - type: Transform
+ pos: -7.5,-8.5
+ parent: 2
+ - uid: 596
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 2
+ - uid: 597
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 598
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - uid: 599
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 600
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 2
+ - uid: 601
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - uid: 602
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 4.5,-8.5
+ parent: 2
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 4.5,-7.5
+ parent: 2
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 2
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 2
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 2
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+ - uid: 615
+ components:
+ - type: Transform
+ pos: -20.5,4.5
+ parent: 2
+ - uid: 616
+ components:
+ - type: Transform
+ pos: -20.5,3.5
+ parent: 2
+ - uid: 617
+ components:
+ - type: Transform
+ pos: -20.5,2.5
+ parent: 2
+ - uid: 618
+ components:
+ - type: Transform
+ pos: -20.5,1.5
+ parent: 2
+ - uid: 619
+ components:
+ - type: Transform
+ pos: -21.5,1.5
+ parent: 2
+ - uid: 620
+ components:
+ - type: Transform
+ pos: -22.5,1.5
+ parent: 2
+ - uid: 621
+ components:
+ - type: Transform
+ pos: -23.5,1.5
+ parent: 2
+ - uid: 622
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 2
+ - uid: 623
+ components:
+ - type: Transform
+ pos: -18.5,1.5
+ parent: 2
+ - uid: 624
+ components:
+ - type: Transform
+ pos: -17.5,1.5
+ parent: 2
+ - uid: 625
+ components:
+ - type: Transform
+ pos: -16.5,1.5
+ parent: 2
+ - uid: 626
+ components:
+ - type: Transform
+ pos: -15.5,1.5
+ parent: 2
+ - uid: 627
+ components:
+ - type: Transform
+ pos: -14.5,1.5
+ parent: 2
+ - uid: 628
+ components:
+ - type: Transform
+ pos: -13.5,1.5
+ parent: 2
+ - uid: 629
+ components:
+ - type: Transform
+ pos: -12.5,1.5
+ parent: 2
+ - uid: 630
+ components:
+ - type: Transform
+ pos: -12.5,2.5
+ parent: 2
+ - uid: 631
+ components:
+ - type: Transform
+ pos: -11.5,2.5
+ parent: 2
+ - uid: 632
+ components:
+ - type: Transform
+ pos: -11.5,3.5
+ parent: 2
+ - uid: 633
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 2
+ - uid: 634
+ components:
+ - type: Transform
+ pos: -10.5,4.5
+ parent: 2
+ - uid: 635
+ components:
+ - type: Transform
+ pos: -10.5,5.5
+ parent: 2
+ - uid: 636
+ components:
+ - type: Transform
+ pos: -10.5,6.5
+ parent: 2
+ - uid: 637
+ components:
+ - type: Transform
+ pos: -10.5,7.5
+ parent: 2
+ - uid: 638
+ components:
+ - type: Transform
+ pos: -10.5,8.5
+ parent: 2
+ - uid: 639
+ components:
+ - type: Transform
+ pos: -10.5,12.5
+ parent: 2
+ - uid: 640
+ components:
+ - type: Transform
+ pos: -10.5,11.5
+ parent: 2
+ - uid: 641
+ components:
+ - type: Transform
+ pos: -10.5,10.5
+ parent: 2
+ - uid: 642
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 2
+ - uid: 644
+ components:
+ - type: Transform
+ pos: -5.5,16.5
+ parent: 2
+ - uid: 645
+ components:
+ - type: Transform
+ pos: -6.5,16.5
+ parent: 2
+ - uid: 646
+ components:
+ - type: Transform
+ pos: -6.5,17.5
+ parent: 2
+ - uid: 647
+ components:
+ - type: Transform
+ pos: -6.5,18.5
+ parent: 2
+ - uid: 648
+ components:
+ - type: Transform
+ pos: -6.5,20.5
+ parent: 2
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 2
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 2
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 2
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 2
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 2
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 2
+ - uid: 655
+ components:
+ - type: Transform
+ pos: -34.5,-9.5
+ parent: 2
+ - uid: 656
+ components:
+ - type: Transform
+ pos: -28.5,-1.5
+ parent: 2
+ - uid: 657
+ components:
+ - type: Transform
+ pos: -29.5,-1.5
+ parent: 2
+ - uid: 658
+ components:
+ - type: Transform
+ pos: -27.5,-1.5
+ parent: 2
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 4.5,23.5
+ parent: 2
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 5.5,23.5
+ parent: 2
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 6.5,23.5
+ parent: 2
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 7.5,23.5
+ parent: 2
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 8.5,23.5
+ parent: 2
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 9.5,23.5
+ parent: 2
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 10.5,23.5
+ parent: 2
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 11.5,23.5
+ parent: 2
+ - uid: 667
+ components:
+ - type: Transform
+ pos: -26.5,1.5
+ parent: 2
+ - uid: 668
+ components:
+ - type: Transform
+ pos: -27.5,1.5
+ parent: 2
+ - uid: 669
+ components:
+ - type: Transform
+ pos: -28.5,1.5
+ parent: 2
+ - uid: 670
+ components:
+ - type: Transform
+ pos: -26.5,-1.5
+ parent: 2
+ - uid: 671
+ components:
+ - type: Transform
+ pos: -26.5,-2.5
+ parent: 2
+ - uid: 672
+ components:
+ - type: Transform
+ pos: -26.5,-3.5
+ parent: 2
+ - uid: 673
+ components:
+ - type: Transform
+ pos: -26.5,-0.5
+ parent: 2
+ - uid: 674
+ components:
+ - type: Transform
+ pos: -25.5,-3.5
+ parent: 2
+ - uid: 675
+ components:
+ - type: Transform
+ pos: -30.5,-1.5
+ parent: 2
+ - uid: 676
+ components:
+ - type: Transform
+ pos: -31.5,-1.5
+ parent: 2
+ - uid: 677
+ components:
+ - type: Transform
+ pos: -32.5,-1.5
+ parent: 2
+ - uid: 678
+ components:
+ - type: Transform
+ pos: -33.5,-1.5
+ parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ pos: -33.5,-0.5
+ parent: 2
+ - uid: 680
+ components:
+ - type: Transform
+ pos: -33.5,0.5
+ parent: 2
+ - uid: 681
+ components:
+ - type: Transform
+ pos: -33.5,1.5
+ parent: 2
+ - uid: 682
+ components:
+ - type: Transform
+ pos: -33.5,2.5
+ parent: 2
+ - uid: 683
+ components:
+ - type: Transform
+ pos: -33.5,3.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ pos: -33.5,4.5
+ parent: 2
+ - uid: 685
+ components:
+ - type: Transform
+ pos: -33.5,5.5
+ parent: 2
+ - uid: 686
+ components:
+ - type: Transform
+ pos: -33.5,6.5
+ parent: 2
+ - uid: 687
+ components:
+ - type: Transform
+ pos: -33.5,7.5
+ parent: 2
+ - uid: 688
+ components:
+ - type: Transform
+ pos: -33.5,8.5
+ parent: 2
+ - uid: 689
+ components:
+ - type: Transform
+ pos: -33.5,9.5
+ parent: 2
+ - uid: 690
+ components:
+ - type: Transform
+ pos: -33.5,10.5
+ parent: 2
+ - uid: 691
+ components:
+ - type: Transform
+ pos: -33.5,11.5
+ parent: 2
+ - uid: 692
+ components:
+ - type: Transform
+ pos: -33.5,12.5
+ parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ pos: -33.5,13.5
+ parent: 2
+ - uid: 694
+ components:
+ - type: Transform
+ pos: -32.5,13.5
+ parent: 2
+ - uid: 695
+ components:
+ - type: Transform
+ pos: -31.5,13.5
+ parent: 2
+ - uid: 696
+ components:
+ - type: Transform
+ pos: -30.5,13.5
+ parent: 2
+ - uid: 697
+ components:
+ - type: Transform
+ pos: -29.5,13.5
+ parent: 2
+ - uid: 698
+ components:
+ - type: Transform
+ pos: -33.5,-2.5
+ parent: 2
+ - uid: 699
+ components:
+ - type: Transform
+ pos: -33.5,-3.5
+ parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ pos: -33.5,-4.5
+ parent: 2
+ - uid: 701
+ components:
+ - type: Transform
+ pos: -33.5,-5.5
+ parent: 2
+ - uid: 702
+ components:
+ - type: Transform
+ pos: -33.5,-6.5
+ parent: 2
+ - uid: 703
+ components:
+ - type: Transform
+ pos: -33.5,-7.5
+ parent: 2
+ - uid: 704
+ components:
+ - type: Transform
+ pos: -32.5,-7.5
+ parent: 2
+ - uid: 705
+ components:
+ - type: Transform
+ pos: -31.5,-7.5
+ parent: 2
+ - uid: 706
+ components:
+ - type: Transform
+ pos: -30.5,-7.5
+ parent: 2
+ - uid: 707
+ components:
+ - type: Transform
+ pos: -33.5,-8.5
+ parent: 2
+ - uid: 708
+ components:
+ - type: Transform
+ pos: -33.5,-9.5
+ parent: 2
+ - uid: 709
+ components:
+ - type: Transform
+ pos: -35.5,-9.5
+ parent: 2
+ - uid: 710
+ components:
+ - type: Transform
+ pos: -36.5,-9.5
+ parent: 2
+ - uid: 711
+ components:
+ - type: Transform
+ pos: -37.5,-9.5
+ parent: 2
+ - uid: 712
+ components:
+ - type: Transform
+ pos: -38.5,-9.5
+ parent: 2
+ - uid: 713
+ components:
+ - type: Transform
+ pos: -39.5,-9.5
+ parent: 2
+ - uid: 714
+ components:
+ - type: Transform
+ pos: -40.5,-9.5
+ parent: 2
+ - uid: 715
+ components:
+ - type: Transform
+ pos: -41.5,-9.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ pos: -42.5,-9.5
+ parent: 2
+ - uid: 717
+ components:
+ - type: Transform
+ pos: -43.5,-9.5
+ parent: 2
+ - uid: 718
+ components:
+ - type: Transform
+ pos: -44.5,-9.5
+ parent: 2
+ - uid: 719
+ components:
+ - type: Transform
+ pos: -45.5,-9.5
+ parent: 2
+ - uid: 720
+ components:
+ - type: Transform
+ pos: -46.5,-9.5
+ parent: 2
+ - uid: 721
+ components:
+ - type: Transform
+ pos: -47.5,-9.5
+ parent: 2
+ - uid: 722
+ components:
+ - type: Transform
+ pos: -48.5,-9.5
+ parent: 2
+ - uid: 723
+ components:
+ - type: Transform
+ pos: -49.5,-9.5
+ parent: 2
+ - uid: 724
+ components:
+ - type: Transform
+ pos: -50.5,-9.5
+ parent: 2
+ - uid: 725
+ components:
+ - type: Transform
+ pos: -51.5,-9.5
+ parent: 2
+ - uid: 726
+ components:
+ - type: Transform
+ pos: -52.5,-9.5
+ parent: 2
+ - uid: 727
+ components:
+ - type: Transform
+ pos: -53.5,-9.5
+ parent: 2
+ - uid: 728
+ components:
+ - type: Transform
+ pos: -54.5,-9.5
+ parent: 2
+ - uid: 729
+ components:
+ - type: Transform
+ pos: -55.5,-9.5
+ parent: 2
+ - uid: 730
+ components:
+ - type: Transform
+ pos: -56.5,-9.5
+ parent: 2
+ - uid: 731
+ components:
+ - type: Transform
+ pos: -57.5,-9.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ pos: -58.5,-9.5
+ parent: 2
+ - uid: 733
+ components:
+ - type: Transform
+ pos: -59.5,-9.5
+ parent: 2
+ - uid: 734
+ components:
+ - type: Transform
+ pos: -34.5,13.5
+ parent: 2
+ - uid: 735
+ components:
+ - type: Transform
+ pos: -35.5,13.5
+ parent: 2
+ - uid: 736
+ components:
+ - type: Transform
+ pos: -36.5,13.5
+ parent: 2
+ - uid: 737
+ components:
+ - type: Transform
+ pos: -37.5,13.5
+ parent: 2
+ - uid: 738
+ components:
+ - type: Transform
+ pos: -38.5,13.5
+ parent: 2
+ - uid: 739
+ components:
+ - type: Transform
+ pos: -39.5,13.5
+ parent: 2
+ - uid: 740
+ components:
+ - type: Transform
+ pos: -40.5,13.5
+ parent: 2
+ - uid: 741
+ components:
+ - type: Transform
+ pos: -41.5,13.5
+ parent: 2
+ - uid: 742
+ components:
+ - type: Transform
+ pos: -42.5,13.5
+ parent: 2
+ - uid: 743
+ components:
+ - type: Transform
+ pos: -43.5,13.5
+ parent: 2
+ - uid: 744
+ components:
+ - type: Transform
+ pos: -44.5,13.5
+ parent: 2
+ - uid: 745
+ components:
+ - type: Transform
+ pos: -45.5,13.5
+ parent: 2
+ - uid: 746
+ components:
+ - type: Transform
+ pos: -46.5,13.5
+ parent: 2
+ - uid: 747
+ components:
+ - type: Transform
+ pos: -47.5,13.5
+ parent: 2
+ - uid: 748
+ components:
+ - type: Transform
+ pos: -48.5,13.5
+ parent: 2
+ - uid: 749
+ components:
+ - type: Transform
+ pos: -49.5,13.5
+ parent: 2
+ - uid: 750
+ components:
+ - type: Transform
+ pos: -50.5,13.5
+ parent: 2
+ - uid: 751
+ components:
+ - type: Transform
+ pos: -52.5,13.5
+ parent: 2
+ - uid: 752
+ components:
+ - type: Transform
+ pos: -53.5,13.5
+ parent: 2
+ - uid: 753
+ components:
+ - type: Transform
+ pos: -51.5,13.5
+ parent: 2
+ - uid: 754
+ components:
+ - type: Transform
+ pos: -55.5,13.5
+ parent: 2
+ - uid: 755
+ components:
+ - type: Transform
+ pos: -56.5,13.5
+ parent: 2
+ - uid: 756
+ components:
+ - type: Transform
+ pos: -57.5,13.5
+ parent: 2
+ - uid: 757
+ components:
+ - type: Transform
+ pos: -58.5,13.5
+ parent: 2
+ - uid: 758
+ components:
+ - type: Transform
+ pos: -54.5,13.5
+ parent: 2
+ - uid: 759
+ components:
+ - type: Transform
+ pos: -59.5,13.5
+ parent: 2
+ - uid: 760
+ components:
+ - type: Transform
+ pos: -34.5,10.5
+ parent: 2
+ - uid: 761
+ components:
+ - type: Transform
+ pos: -35.5,10.5
+ parent: 2
+ - uid: 762
+ components:
+ - type: Transform
+ pos: -34.5,7.5
+ parent: 2
+ - uid: 763
+ components:
+ - type: Transform
+ pos: -35.5,7.5
+ parent: 2
+ - uid: 764
+ components:
+ - type: Transform
+ pos: -34.5,4.5
+ parent: 2
+ - uid: 765
+ components:
+ - type: Transform
+ pos: -35.5,4.5
+ parent: 2
+ - uid: 766
+ components:
+ - type: Transform
+ pos: -34.5,-0.5
+ parent: 2
+ - uid: 767
+ components:
+ - type: Transform
+ pos: -35.5,-0.5
+ parent: 2
+ - uid: 768
+ components:
+ - type: Transform
+ pos: -34.5,-3.5
+ parent: 2
+ - uid: 769
+ components:
+ - type: Transform
+ pos: -35.5,-3.5
+ parent: 2
+ - uid: 770
+ components:
+ - type: Transform
+ pos: -34.5,-7.5
+ parent: 2
+ - uid: 771
+ components:
+ - type: Transform
+ pos: -35.5,-7.5
+ parent: 2
+ - uid: 772
+ components:
+ - type: Transform
+ pos: -32.5,3.5
+ parent: 2
+ - uid: 773
+ components:
+ - type: Transform
+ pos: -31.5,3.5
+ parent: 2
+ - uid: 774
+ components:
+ - type: Transform
+ pos: -30.5,3.5
+ parent: 2
+ - uid: 775
+ components:
+ - type: Transform
+ pos: -29.5,3.5
+ parent: 2
+ - uid: 776
+ components:
+ - type: Transform
+ pos: -32.5,10.5
+ parent: 2
+ - uid: 777
+ components:
+ - type: Transform
+ pos: -31.5,10.5
+ parent: 2
+ - uid: 778
+ components:
+ - type: Transform
+ pos: -30.5,10.5
+ parent: 2
+ - uid: 779
+ components:
+ - type: Transform
+ pos: -30.5,11.5
+ parent: 2
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -29.5,11.5
+ parent: 2
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -28.5,11.5
+ parent: 2
+ - uid: 782
+ components:
+ - type: Transform
+ pos: -27.5,11.5
+ parent: 2
+ - uid: 783
+ components:
+ - type: Transform
+ pos: -26.5,11.5
+ parent: 2
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -25.5,11.5
+ parent: 2
+ - uid: 785
+ components:
+ - type: Transform
+ pos: -29.5,2.5
+ parent: 2
+ - uid: 786
+ components:
+ - type: Transform
+ pos: -28.5,2.5
+ parent: 2
+- proto: CableApcStack
+ entities:
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 4.6265726,-17.429417
+ parent: 2
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 4.6265726,-17.429417
+ parent: 2
+ - uid: 789
+ components:
+ - type: Transform
+ pos: -9.662043,-18.621029
+ parent: 2
+- proto: CableHV
+ entities:
+ - uid: 790
+ components:
+ - type: Transform
+ pos: -11.5,-13.5
+ parent: 2
+ - uid: 791
+ components:
+ - type: Transform
+ pos: -12.5,-13.5
+ parent: 2
+ - uid: 792
+ components:
+ - type: Transform
+ pos: -13.5,-13.5
+ parent: 2
+ - uid: 793
+ components:
+ - type: Transform
+ pos: -13.5,-14.5
+ parent: 2
+ - uid: 794
+ components:
+ - type: Transform
+ pos: -13.5,-15.5
+ parent: 2
+ - uid: 795
+ components:
+ - type: Transform
+ pos: -13.5,-16.5
+ parent: 2
+ - uid: 796
+ components:
+ - type: Transform
+ pos: -13.5,-17.5
+ parent: 2
+ - uid: 797
+ components:
+ - type: Transform
+ pos: -13.5,-18.5
+ parent: 2
+ - uid: 798
+ components:
+ - type: Transform
+ pos: -13.5,-19.5
+ parent: 2
+ - uid: 799
+ components:
+ - type: Transform
+ pos: -12.5,-19.5
+ parent: 2
+ - uid: 800
+ components:
+ - type: Transform
+ pos: -11.5,-19.5
+ parent: 2
+ - uid: 801
+ components:
+ - type: Transform
+ pos: -12.5,-17.5
+ parent: 2
+ - uid: 802
+ components:
+ - type: Transform
+ pos: -12.5,-16.5
+ parent: 2
+ - uid: 803
+ components:
+ - type: Transform
+ pos: -12.5,-15.5
+ parent: 2
+ - uid: 804
+ components:
+ - type: Transform
+ pos: -11.5,-15.5
+ parent: 2
+ - uid: 805
+ components:
+ - type: Transform
+ pos: -11.5,-16.5
+ parent: 2
+ - uid: 806
+ components:
+ - type: Transform
+ pos: -11.5,-17.5
+ parent: 2
+ - uid: 807
+ components:
+ - type: Transform
+ pos: -10.5,-16.5
+ parent: 2
+ - uid: 808
+ components:
+ - type: Transform
+ pos: -10.5,-15.5
+ parent: 2
+ - uid: 809
+ components:
+ - type: Transform
+ pos: -10.5,-17.5
+ parent: 2
+ - uid: 810
+ components:
+ - type: Transform
+ pos: -14.5,-17.5
+ parent: 2
+ - uid: 811
+ components:
+ - type: Transform
+ pos: -15.5,-18.5
+ parent: 2
+ - uid: 812
+ components:
+ - type: Transform
+ pos: -16.5,-18.5
+ parent: 2
+ - uid: 813
+ components:
+ - type: Transform
+ pos: -16.5,-19.5
+ parent: 2
+ - uid: 814
+ components:
+ - type: Transform
+ pos: -17.5,-19.5
+ parent: 2
+ - uid: 815
+ components:
+ - type: Transform
+ pos: -12.5,-20.5
+ parent: 2
+ - uid: 816
+ components:
+ - type: Transform
+ pos: -11.5,-20.5
+ parent: 2
+ - uid: 817
+ components:
+ - type: Transform
+ pos: -9.5,-16.5
+ parent: 2
+ - uid: 818
+ components:
+ - type: Transform
+ pos: -8.5,-16.5
+ parent: 2
+ - uid: 819
+ components:
+ - type: Transform
+ pos: -7.5,-16.5
+ parent: 2
+ - uid: 820
+ components:
+ - type: Transform
+ pos: -6.5,-16.5
+ parent: 2
+ - uid: 821
+ components:
+ - type: Transform
+ pos: -5.5,-16.5
+ parent: 2
+ - uid: 822
+ components:
+ - type: Transform
+ pos: -4.5,-16.5
+ parent: 2
+ - uid: 823
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 824
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 2
+ - uid: 825
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+ - uid: 826
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 2
+ - uid: 827
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 828
+ components:
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 2
+ - uid: 829
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 830
+ components:
+ - type: Transform
+ pos: -7.5,-15.5
+ parent: 2
+ - uid: 831
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 2
+ - uid: 832
+ components:
+ - type: Transform
+ pos: -7.5,-13.5
+ parent: 2
+ - uid: 833
+ components:
+ - type: Transform
+ pos: -7.5,-12.5
+ parent: 2
+ - uid: 834
+ components:
+ - type: Transform
+ pos: -7.5,-11.5
+ parent: 2
+ - uid: 835
+ components:
+ - type: Transform
+ pos: -7.5,-10.5
+ parent: 2
+ - uid: 836
+ components:
+ - type: Transform
+ pos: -7.5,-9.5
+ parent: 2
+ - uid: 837
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 838
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 839
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 840
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 841
+ components:
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 842
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 843
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 845
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 2
+ - uid: 848
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 2
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 4.5,-8.5
+ parent: 2
+ - uid: 850
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 2
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 6.5,-8.5
+ parent: 2
+ - uid: 852
+ components:
+ - type: Transform
+ pos: 7.5,-8.5
+ parent: 2
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 2
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 8.5,-9.5
+ parent: 2
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 8.5,-10.5
+ parent: 2
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 8.5,-11.5
+ parent: 2
+ - uid: 857
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - uid: 858
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+ - uid: 859
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 8.5,-15.5
+ parent: 2
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 9.5,-15.5
+ parent: 2
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 10.5,-15.5
+ parent: 2
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 2
+ - uid: 864
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 2
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 11.5,-16.5
+ parent: 2
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 12.5,-15.5
+ parent: 2
+ - uid: 867
+ components:
+ - type: Transform
+ pos: 13.5,-14.5
+ parent: 2
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 13.5,-15.5
+ parent: 2
+ - uid: 869
+ components:
+ - type: Transform
+ pos: 13.5,-16.5
+ parent: 2
+ - uid: 870
+ components:
+ - type: Transform
+ pos: 13.5,-17.5
+ parent: 2
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 12.5,-17.5
+ parent: 2
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 2
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 877
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 2
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 7.5,-1.5
+ parent: 2
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 2
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 2
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 2
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 2
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 2
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 2
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 2
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 2
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 2
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 2
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 2
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 2
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 2
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 2
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -7.5,-8.5
+ parent: 2
+ - uid: 902
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 2
+ - uid: 903
+ components:
+ - type: Transform
+ pos: -9.5,-8.5
+ parent: 2
+ - uid: 904
+ components:
+ - type: Transform
+ pos: -10.5,-8.5
+ parent: 2
+ - uid: 905
+ components:
+ - type: Transform
+ pos: -10.5,-7.5
+ parent: 2
+ - uid: 906
+ components:
+ - type: Transform
+ pos: -10.5,-6.5
+ parent: 2
+ - uid: 907
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 2
+ - uid: 908
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 2
+ - uid: 909
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 2
+ - uid: 910
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 911
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 912
+ components:
+ - type: Transform
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 913
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 914
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 915
+ components:
+ - type: Transform
+ pos: -10.5,2.5
+ parent: 2
+ - uid: 916
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 2
+ - uid: 917
+ components:
+ - type: Transform
+ pos: -10.5,4.5
+ parent: 2
+ - uid: 918
+ components:
+ - type: Transform
+ pos: -10.5,5.5
+ parent: 2
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -10.5,6.5
+ parent: 2
+ - uid: 920
+ components:
+ - type: Transform
+ pos: -10.5,7.5
+ parent: 2
+ - uid: 921
+ components:
+ - type: Transform
+ pos: -10.5,8.5
+ parent: 2
+ - uid: 922
+ components:
+ - type: Transform
+ pos: -10.5,9.5
+ parent: 2
+ - uid: 923
+ components:
+ - type: Transform
+ pos: -10.5,10.5
+ parent: 2
+ - uid: 924
+ components:
+ - type: Transform
+ pos: -10.5,11.5
+ parent: 2
+ - uid: 925
+ components:
+ - type: Transform
+ pos: -10.5,12.5
+ parent: 2
+ - uid: 926
+ components:
+ - type: Transform
+ pos: -10.5,14.5
+ parent: 2
+ - uid: 927
+ components:
+ - type: Transform
+ pos: -10.5,15.5
+ parent: 2
+ - uid: 928
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 2
+ - uid: 929
+ components:
+ - type: Transform
+ pos: -10.5,17.5
+ parent: 2
+ - uid: 930
+ components:
+ - type: Transform
+ pos: -10.5,16.5
+ parent: 2
+ - uid: 931
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 2
+ - uid: 932
+ components:
+ - type: Transform
+ pos: -9.5,17.5
+ parent: 2
+ - uid: 933
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 934
+ components:
+ - type: Transform
+ pos: -12.5,1.5
+ parent: 2
+ - uid: 935
+ components:
+ - type: Transform
+ pos: -13.5,1.5
+ parent: 2
+ - uid: 936
+ components:
+ - type: Transform
+ pos: -14.5,1.5
+ parent: 2
+ - uid: 937
+ components:
+ - type: Transform
+ pos: -15.5,1.5
+ parent: 2
+ - uid: 938
+ components:
+ - type: Transform
+ pos: -16.5,1.5
+ parent: 2
+ - uid: 939
+ components:
+ - type: Transform
+ pos: -17.5,1.5
+ parent: 2
+ - uid: 940
+ components:
+ - type: Transform
+ pos: -18.5,1.5
+ parent: 2
+ - uid: 941
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 2
+ - uid: 942
+ components:
+ - type: Transform
+ pos: -20.5,1.5
+ parent: 2
+ - uid: 943
+ components:
+ - type: Transform
+ pos: -20.5,2.5
+ parent: 2
+ - uid: 944
+ components:
+ - type: Transform
+ pos: -20.5,3.5
+ parent: 2
+ - uid: 945
+ components:
+ - type: Transform
+ pos: -20.5,4.5
+ parent: 2
+ - uid: 946
+ components:
+ - type: Transform
+ pos: -20.5,5.5
+ parent: 2
+ - uid: 947
+ components:
+ - type: Transform
+ pos: -20.5,6.5
+ parent: 2
+ - uid: 948
+ components:
+ - type: Transform
+ pos: -20.5,7.5
+ parent: 2
+ - uid: 949
+ components:
+ - type: Transform
+ pos: -21.5,7.5
+ parent: 2
+ - uid: 950
+ components:
+ - type: Transform
+ pos: -21.5,8.5
+ parent: 2
+ - uid: 951
+ components:
+ - type: Transform
+ pos: -21.5,9.5
+ parent: 2
+ - uid: 952
+ components:
+ - type: Transform
+ pos: -21.5,10.5
+ parent: 2
+ - uid: 953
+ components:
+ - type: Transform
+ pos: -20.5,10.5
+ parent: 2
+ - uid: 954
+ components:
+ - type: Transform
+ pos: -19.5,10.5
+ parent: 2
+ - uid: 955
+ components:
+ - type: Transform
+ pos: -18.5,10.5
+ parent: 2
+ - uid: 956
+ components:
+ - type: Transform
+ pos: -18.5,9.5
+ parent: 2
+ - uid: 957
+ components:
+ - type: Transform
+ pos: -18.5,8.5
+ parent: 2
+ - uid: 958
+ components:
+ - type: Transform
+ pos: -18.5,7.5
+ parent: 2
+ - uid: 959
+ components:
+ - type: Transform
+ pos: -19.5,7.5
+ parent: 2
+ - uid: 960
+ components:
+ - type: Transform
+ pos: -22.5,7.5
+ parent: 2
+ - uid: 961
+ components:
+ - type: Transform
+ pos: -22.5,6.5
+ parent: 2
+ - uid: 962
+ components:
+ - type: Transform
+ pos: -23.5,6.5
+ parent: 2
+ - uid: 963
+ components:
+ - type: Transform
+ pos: -24.5,6.5
+ parent: 2
+ - uid: 964
+ components:
+ - type: Transform
+ pos: -25.5,6.5
+ parent: 2
+ - uid: 965
+ components:
+ - type: Transform
+ pos: -26.5,6.5
+ parent: 2
+ - uid: 966
+ components:
+ - type: Transform
+ pos: -27.5,6.5
+ parent: 2
+ - uid: 967
+ components:
+ - type: Transform
+ pos: -27.5,7.5
+ parent: 2
+ - uid: 968
+ components:
+ - type: Transform
+ pos: -27.5,8.5
+ parent: 2
+ - uid: 969
+ components:
+ - type: Transform
+ pos: -27.5,9.5
+ parent: 2
+ - uid: 970
+ components:
+ - type: Transform
+ pos: -27.5,10.5
+ parent: 2
+ - uid: 971
+ components:
+ - type: Transform
+ pos: -26.5,10.5
+ parent: 2
+ - uid: 972
+ components:
+ - type: Transform
+ pos: -25.5,10.5
+ parent: 2
+ - uid: 973
+ components:
+ - type: Transform
+ pos: -24.5,10.5
+ parent: 2
+ - uid: 974
+ components:
+ - type: Transform
+ pos: -23.5,10.5
+ parent: 2
+ - uid: 975
+ components:
+ - type: Transform
+ pos: -22.5,10.5
+ parent: 2
+ - uid: 976
+ components:
+ - type: Transform
+ pos: -18.5,11.5
+ parent: 2
+ - uid: 977
+ components:
+ - type: Transform
+ pos: -18.5,12.5
+ parent: 2
+ - uid: 978
+ components:
+ - type: Transform
+ pos: -18.5,13.5
+ parent: 2
+ - uid: 979
+ components:
+ - type: Transform
+ pos: -18.5,14.5
+ parent: 2
+ - uid: 980
+ components:
+ - type: Transform
+ pos: -18.5,15.5
+ parent: 2
+ - uid: 981
+ components:
+ - type: Transform
+ pos: -18.5,16.5
+ parent: 2
+ - uid: 982
+ components:
+ - type: Transform
+ pos: -18.5,17.5
+ parent: 2
+ - uid: 983
+ components:
+ - type: Transform
+ pos: -17.5,17.5
+ parent: 2
+ - uid: 984
+ components:
+ - type: Transform
+ pos: -11.5,-4.5
+ parent: 2
+ - uid: 985
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 2
+ - uid: 986
+ components:
+ - type: Transform
+ pos: -13.5,-4.5
+ parent: 2
+ - uid: 987
+ components:
+ - type: Transform
+ pos: -14.5,-4.5
+ parent: 2
+ - uid: 988
+ components:
+ - type: Transform
+ pos: -15.5,-4.5
+ parent: 2
+ - uid: 989
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 2
+ - uid: 990
+ components:
+ - type: Transform
+ pos: -17.5,-4.5
+ parent: 2
+ - uid: 991
+ components:
+ - type: Transform
+ pos: -18.5,-4.5
+ parent: 2
+ - uid: 992
+ components:
+ - type: Transform
+ pos: -19.5,-4.5
+ parent: 2
+ - uid: 993
+ components:
+ - type: Transform
+ pos: -20.5,-4.5
+ parent: 2
+ - uid: 994
+ components:
+ - type: Transform
+ pos: -21.5,-4.5
+ parent: 2
+ - uid: 995
+ components:
+ - type: Transform
+ pos: -22.5,-4.5
+ parent: 2
+ - uid: 996
+ components:
+ - type: Transform
+ pos: -23.5,-4.5
+ parent: 2
+ - uid: 997
+ components:
+ - type: Transform
+ pos: -23.5,-5.5
+ parent: 2
+ - uid: 998
+ components:
+ - type: Transform
+ pos: -24.5,-5.5
+ parent: 2
+ - uid: 999
+ components:
+ - type: Transform
+ pos: -25.5,-5.5
+ parent: 2
+ - uid: 1000
+ components:
+ - type: Transform
+ pos: -25.5,-6.5
+ parent: 2
+ - uid: 1001
+ components:
+ - type: Transform
+ pos: -25.5,-7.5
+ parent: 2
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: -26.5,-6.5
+ parent: 2
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: -27.5,-6.5
+ parent: 2
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: -28.5,-6.5
+ parent: 2
+ - uid: 1005
+ components:
+ - type: Transform
+ pos: -28.5,-5.5
+ parent: 2
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: -28.5,-7.5
+ parent: 2
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: -28.5,8.5
+ parent: 2
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: -29.5,8.5
+ parent: 2
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: -30.5,8.5
+ parent: 2
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: -31.5,8.5
+ parent: 2
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: -31.5,9.5
+ parent: 2
+ - uid: 1012
+ components:
+ - type: Transform
+ pos: -31.5,7.5
+ parent: 2
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: -31.5,6.5
+ parent: 2
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: -16.5,17.5
+ parent: 2
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: -16.5,18.5
+ parent: 2
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: -16.5,19.5
+ parent: 2
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: -16.5,20.5
+ parent: 2
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: -16.5,21.5
+ parent: 2
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: -17.5,21.5
+ parent: 2
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: -17.5,22.5
+ parent: 2
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: -18.5,22.5
+ parent: 2
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: -19.5,22.5
+ parent: 2
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: -15.5,21.5
+ parent: 2
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: -15.5,22.5
+ parent: 2
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: -15.5,23.5
+ parent: 2
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: -14.5,23.5
+ parent: 2
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: -14.5,24.5
+ parent: 2
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: -13.5,24.5
+ parent: 2
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: -12.5,24.5
+ parent: 2
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: -11.5,24.5
+ parent: 2
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: -10.5,24.5
+ parent: 2
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: -9.5,24.5
+ parent: 2
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: -9.5,23.5
+ parent: 2
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: -9.5,22.5
+ parent: 2
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: -15.5,17.5
+ parent: 2
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: -14.5,17.5
+ parent: 2
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: -15.5,-17.5
+ parent: 2
+- proto: CableHVStack
+ entities:
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: -9.103862,-18.626534
+ parent: 2
+- proto: CableMV
+ entities:
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: -10.5,-15.5
+ parent: 2
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: -10.5,-16.5
+ parent: 2
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: -10.5,-17.5
+ parent: 2
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: -9.5,-16.5
+ parent: 2
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: -9.5,-15.5
+ parent: 2
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: -9.5,-14.5
+ parent: 2
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: -9.5,-13.5
+ parent: 2
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: -9.5,-17.5
+ parent: 2
+ - uid: 1047
+ components:
+ - type: Transform
+ pos: -8.5,-16.5
+ parent: 2
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: -7.5,-16.5
+ parent: 2
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: -7.5,-15.5
+ parent: 2
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 2
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: -7.5,-13.5
+ parent: 2
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: -7.5,-12.5
+ parent: 2
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: -7.5,-11.5
+ parent: 2
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: -7.5,-10.5
+ parent: 2
+ - uid: 1055
+ components:
+ - type: Transform
+ pos: -7.5,-9.5
+ parent: 2
+ - uid: 1056
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 1058
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - uid: 1063
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+ - uid: 1067
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 2
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 2
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 6.5,-10.5
+ parent: 2
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 6.5,-11.5
+ parent: 2
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 2
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 2
+ - uid: 1074
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 2
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 5.5,-2.5
+ parent: 2
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 2
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: -7.5,-8.5
+ parent: 2
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 2
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: -9.5,-8.5
+ parent: 2
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: -10.5,-8.5
+ parent: 2
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: -10.5,-7.5
+ parent: 2
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: -10.5,-6.5
+ parent: 2
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 2
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: -11.5,-5.5
+ parent: 2
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: -12.5,-5.5
+ parent: 2
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: -13.5,-5.5
+ parent: 2
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: -14.5,-5.5
+ parent: 2
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: -15.5,-5.5
+ parent: 2
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: -16.5,-5.5
+ parent: 2
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: -16.5,-6.5
+ parent: 2
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 2
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 2
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: -10.5,2.5
+ parent: 2
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 2
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: -10.5,4.5
+ parent: 2
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: -10.5,5.5
+ parent: 2
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: -10.5,6.5
+ parent: 2
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: -10.5,7.5
+ parent: 2
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: -10.5,8.5
+ parent: 2
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: -10.5,9.5
+ parent: 2
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: -10.5,10.5
+ parent: 2
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: -10.5,11.5
+ parent: 2
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 2
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: -10.5,14.5
+ parent: 2
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: -10.5,15.5
+ parent: 2
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: -10.5,12.5
+ parent: 2
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: -11.5,15.5
+ parent: 2
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: -12.5,15.5
+ parent: 2
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: -13.5,15.5
+ parent: 2
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: -9.5,12.5
+ parent: 2
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: -8.5,12.5
+ parent: 2
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: -7.5,12.5
+ parent: 2
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: -6.5,12.5
+ parent: 2
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: -5.5,12.5
+ parent: 2
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 2
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 2
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: -1.5,12.5
+ parent: 2
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: -0.5,12.5
+ parent: 2
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 2
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 2
+ - uid: 1139
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 2
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 2
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 2
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 2
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 2
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 7.5,12.5
+ parent: 2
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 7.5,13.5
+ parent: 2
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 7.5,14.5
+ parent: 2
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 2
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 2
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 2
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 2
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 2
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 12.5,15.5
+ parent: 2
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 12.5,16.5
+ parent: 2
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 2
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: -12.5,1.5
+ parent: 2
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: -13.5,1.5
+ parent: 2
+ - uid: 1158
+ components:
+ - type: Transform
+ pos: -14.5,1.5
+ parent: 2
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: -15.5,1.5
+ parent: 2
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: -16.5,1.5
+ parent: 2
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: -17.5,1.5
+ parent: 2
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: -18.5,1.5
+ parent: 2
+ - uid: 1163
+ components:
+ - type: Transform
+ pos: -18.5,2.5
+ parent: 2
+ - uid: 1164
+ components:
+ - type: Transform
+ pos: -18.5,3.5
+ parent: 2
+ - uid: 1165
+ components:
+ - type: Transform
+ pos: -18.5,4.5
+ parent: 2
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: -18.5,5.5
+ parent: 2
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: -18.5,6.5
+ parent: 2
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: -17.5,6.5
+ parent: 2
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: -16.5,6.5
+ parent: 2
+ - uid: 1170
+ components:
+ - type: Transform
+ pos: -15.5,6.5
+ parent: 2
+ - uid: 1171
+ components:
+ - type: Transform
+ pos: -15.5,5.5
+ parent: 2
+ - uid: 1172
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 2
+ - uid: 1173
+ components:
+ - type: Transform
+ pos: -18.5,-5.5
+ parent: 2
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: -19.5,-5.5
+ parent: 2
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: -20.5,-5.5
+ parent: 2
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: -21.5,-5.5
+ parent: 2
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: -22.5,-5.5
+ parent: 2
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: -23.5,-5.5
+ parent: 2
+ - uid: 1179
+ components:
+ - type: Transform
+ pos: -23.5,-4.5
+ parent: 2
+ - uid: 1180
+ components:
+ - type: Transform
+ pos: -23.5,-3.5
+ parent: 2
+ - uid: 1181
+ components:
+ - type: Transform
+ pos: -24.5,-3.5
+ parent: 2
+ - uid: 1182
+ components:
+ - type: Transform
+ pos: -25.5,-3.5
+ parent: 2
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: -26.5,-3.5
+ parent: 2
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: -26.5,-2.5
+ parent: 2
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: -26.5,-1.5
+ parent: 2
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: -27.5,-1.5
+ parent: 2
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: -28.5,-1.5
+ parent: 2
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: -29.5,-1.5
+ parent: 2
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 2
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 2
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 2
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 2
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 2
+ - uid: 1204
+ components:
+ - type: Transform
+ pos: -19.5,0.5
+ parent: 2
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: -19.5,-0.5
+ parent: 2
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: -19.5,-1.5
+ parent: 2
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: -19.5,-2.5
+ parent: 2
+ - uid: 1208
+ components:
+ - type: Transform
+ pos: -19.5,-3.5
+ parent: 2
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: -19.5,-4.5
+ parent: 2
+- proto: CableMVStack
+ entities:
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: -9.150737,-18.415596
+ parent: 2
+- proto: CableTerminal
+ entities:
+ - uid: 1211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-15.5
+ parent: 2
+ - uid: 1212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-16.5
+ parent: 2
+ - uid: 1213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-17.5
+ parent: 2
+- proto: Carpet
+ entities:
+ - uid: 1214
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 2
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 1223
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 2
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 2
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 2
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 2
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 1229
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+ - uid: 1230
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 1231
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 2
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 2
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 2
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 2
+ - uid: 1238
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 1239
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - uid: 1240
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 1241
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 2
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 2
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 2
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 1246
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 2
+ - uid: 1247
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 2
+ - uid: 1248
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 2
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 2
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 2
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 2
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 15.5,15.5
+ parent: 2
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: 16.5,15.5
+ parent: 2
+- proto: CarpetBlack
+ entities:
+ - uid: 1254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,6.5
+ parent: 2
+ - uid: 1255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,5.5
+ parent: 2
+ - uid: 1256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,6.5
+ parent: 2
+ - uid: 1257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,5.5
+ parent: 2
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 2
+ - uid: 1259
+ components:
+ - type: Transform
+ pos: 11.5,20.5
+ parent: 2
+ - uid: 1260
+ components:
+ - type: Transform
+ pos: 11.5,19.5
+ parent: 2
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: 12.5,20.5
+ parent: 2
+ - uid: 1262
+ components:
+ - type: Transform
+ pos: 12.5,19.5
+ parent: 2
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 10.5,19.5
+ parent: 2
+- proto: CarpetBlue
+ entities:
+ - uid: 1264
+ components:
+ - type: Transform
+ pos: 14.5,16.5
+ parent: 2
+ - uid: 1265
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 2
+- proto: CarpetGreen
+ entities:
+ - uid: 1266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,10.5
+ parent: 2
+ - uid: 1267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,9.5
+ parent: 2
+ - uid: 1268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,8.5
+ parent: 2
+ - uid: 1269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,7.5
+ parent: 2
+ - uid: 1270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,10.5
+ parent: 2
+ - uid: 1271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,9.5
+ parent: 2
+ - uid: 1272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,8.5
+ parent: 2
+ - uid: 1273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,7.5
+ parent: 2
+- proto: CarpetWhite
+ entities:
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: 16.5,16.5
+ parent: 2
+ - uid: 1275
+ components:
+ - type: Transform
+ pos: 15.5,16.5
+ parent: 2
+- proto: Catwalk
+ entities:
+ - uid: 1276
+ components:
+ - type: Transform
+ pos: -12.5,2.5
+ parent: 2
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: -11.5,-8.5
+ parent: 2
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: -28.5,3.5
+ parent: 2
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 2
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 1281
+ components:
+ - type: Transform
+ pos: -10.5,2.5
+ parent: 2
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: -8.5,2.5
+ parent: 2
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: -9.5,2.5
+ parent: 2
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: -11.5,2.5
+ parent: 2
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: -27.5,3.5
+ parent: 2
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: -33.5,7.5
+ parent: 2
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 2
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: -11.5,-3.5
+ parent: 2
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: -11.5,-4.5
+ parent: 2
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: -12.5,3.5
+ parent: 2
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: -12.5,0.5
+ parent: 2
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: -11.5,-2.5
+ parent: 2
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 2
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: -12.5,1.5
+ parent: 2
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: -7.5,2.5
+ parent: 2
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 1298
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 1299
+ components:
+ - type: Transform
+ pos: -8.5,3.5
+ parent: 2
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: -11.5,-1.5
+ parent: 2
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: -11.5,-0.5
+ parent: 2
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: -11.5,0.5
+ parent: 2
+ - uid: 1303
+ components:
+ - type: Transform
+ pos: -8.5,0.5
+ parent: 2
+ - uid: 1304
+ components:
+ - type: Transform
+ pos: -11.5,-5.5
+ parent: 2
+ - uid: 1305
+ components:
+ - type: Transform
+ pos: -11.5,-6.5
+ parent: 2
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: -11.5,-7.5
+ parent: 2
+ - uid: 1307
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 1311
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 2
+ - uid: 1312
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 2
+ - uid: 1313
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 2
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: -10.5,-6.5
+ parent: 2
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: -10.5,-8.5
+ parent: 2
+ - uid: 1316
+ components:
+ - type: Transform
+ pos: -10.5,-9.5
+ parent: 2
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: -10.5,-7.5
+ parent: 2
+ - uid: 1318
+ components:
+ - type: Transform
+ pos: -9.5,0.5
+ parent: 2
+ - uid: 1319
+ components:
+ - type: Transform
+ pos: -9.5,-0.5
+ parent: 2
+ - uid: 1320
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 2
+ - uid: 1321
+ components:
+ - type: Transform
+ pos: -9.5,-2.5
+ parent: 2
+ - uid: 1322
+ components:
+ - type: Transform
+ pos: -9.5,-3.5
+ parent: 2
+ - uid: 1323
+ components:
+ - type: Transform
+ pos: -9.5,-5.5
+ parent: 2
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: -9.5,-4.5
+ parent: 2
+ - uid: 1325
+ components:
+ - type: Transform
+ pos: -9.5,-7.5
+ parent: 2
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: -9.5,-6.5
+ parent: 2
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: -9.5,-8.5
+ parent: 2
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: -9.5,-9.5
+ parent: 2
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: -8.5,-9.5
+ parent: 2
+ - uid: 1330
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 2
+ - uid: 1331
+ components:
+ - type: Transform
+ pos: -8.5,-7.5
+ parent: 2
+ - uid: 1332
+ components:
+ - type: Transform
+ pos: -7.5,-9.5
+ parent: 2
+ - uid: 1333
+ components:
+ - type: Transform
+ pos: -7.5,-8.5
+ parent: 2
+ - uid: 1334
+ components:
+ - type: Transform
+ pos: -7.5,-7.5
+ parent: 2
+ - uid: 1335
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 1336
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 2
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: -6.5,-7.5
+ parent: 2
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - uid: 1342
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 1343
+ components:
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 1344
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 2
+ - uid: 1346
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 1347
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - uid: 1348
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 1349
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - uid: 1350
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - uid: 1351
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 2
+ - uid: 1352
+ components:
+ - type: Transform
+ pos: -11.5,3.5
+ parent: 2
+ - uid: 1353
+ components:
+ - type: Transform
+ pos: -11.5,6.5
+ parent: 2
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: -11.5,5.5
+ parent: 2
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: -11.5,7.5
+ parent: 2
+ - uid: 1356
+ components:
+ - type: Transform
+ pos: -11.5,8.5
+ parent: 2
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: -11.5,9.5
+ parent: 2
+ - uid: 1358
+ components:
+ - type: Transform
+ pos: -11.5,10.5
+ parent: 2
+ - uid: 1359
+ components:
+ - type: Transform
+ pos: -11.5,11.5
+ parent: 2
+ - uid: 1360
+ components:
+ - type: Transform
+ pos: -11.5,12.5
+ parent: 2
+ - uid: 1361
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 2
+ - uid: 1362
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 2
+ - uid: 1363
+ components:
+ - type: Transform
+ pos: -10.5,4.5
+ parent: 2
+ - uid: 1364
+ components:
+ - type: Transform
+ pos: -10.5,5.5
+ parent: 2
+ - uid: 1365
+ components:
+ - type: Transform
+ pos: -10.5,6.5
+ parent: 2
+ - uid: 1366
+ components:
+ - type: Transform
+ pos: -10.5,7.5
+ parent: 2
+ - uid: 1367
+ components:
+ - type: Transform
+ pos: -10.5,8.5
+ parent: 2
+ - uid: 1368
+ components:
+ - type: Transform
+ pos: -10.5,9.5
+ parent: 2
+ - uid: 1369
+ components:
+ - type: Transform
+ pos: -10.5,10.5
+ parent: 2
+ - uid: 1370
+ components:
+ - type: Transform
+ pos: -10.5,11.5
+ parent: 2
+ - uid: 1371
+ components:
+ - type: Transform
+ pos: -10.5,12.5
+ parent: 2
+ - uid: 1372
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 2
+ - uid: 1373
+ components:
+ - type: Transform
+ pos: -9.5,3.5
+ parent: 2
+ - uid: 1374
+ components:
+ - type: Transform
+ pos: -9.5,4.5
+ parent: 2
+ - uid: 1375
+ components:
+ - type: Transform
+ pos: -11.5,4.5
+ parent: 2
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: -9.5,6.5
+ parent: 2
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: -9.5,9.5
+ parent: 2
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: -9.5,8.5
+ parent: 2
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: -9.5,5.5
+ parent: 2
+ - uid: 1380
+ components:
+ - type: Transform
+ pos: -9.5,10.5
+ parent: 2
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: -9.5,11.5
+ parent: 2
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: -9.5,12.5
+ parent: 2
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: -9.5,13.5
+ parent: 2
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: -9.5,7.5
+ parent: 2
+ - uid: 1385
+ components:
+ - type: Transform
+ pos: 6.5,11.5
+ parent: 2
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: 7.5,11.5
+ parent: 2
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 2
+ - uid: 1388
+ components:
+ - type: Transform
+ pos: -8.5,12.5
+ parent: 2
+ - uid: 1389
+ components:
+ - type: Transform
+ pos: -11.5,13.5
+ parent: 2
+ - uid: 1390
+ components:
+ - type: Transform
+ pos: -7.5,12.5
+ parent: 2
+ - uid: 1391
+ components:
+ - type: Transform
+ pos: -6.5,13.5
+ parent: 2
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: -6.5,12.5
+ parent: 2
+ - uid: 1393
+ components:
+ - type: Transform
+ pos: -8.5,11.5
+ parent: 2
+ - uid: 1394
+ components:
+ - type: Transform
+ pos: -7.5,13.5
+ parent: 2
+ - uid: 1395
+ components:
+ - type: Transform
+ pos: -5.5,12.5
+ parent: 2
+ - uid: 1396
+ components:
+ - type: Transform
+ pos: -7.5,11.5
+ parent: 2
+ - uid: 1397
+ components:
+ - type: Transform
+ pos: -8.5,13.5
+ parent: 2
+ - uid: 1398
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: -6.5,11.5
+ parent: 2
+ - uid: 1400
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 2
+ - uid: 1401
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 2
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: -5.5,11.5
+ parent: 2
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: -5.5,13.5
+ parent: 2
+ - uid: 1404
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 2
+ - uid: 1405
+ components:
+ - type: Transform
+ pos: -4.5,11.5
+ parent: 2
+ - uid: 1406
+ components:
+ - type: Transform
+ pos: -3.5,13.5
+ parent: 2
+ - uid: 1407
+ components:
+ - type: Transform
+ pos: -1.5,12.5
+ parent: 2
+ - uid: 1408
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 2
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: -0.5,12.5
+ parent: 2
+ - uid: 1410
+ components:
+ - type: Transform
+ pos: -1.5,13.5
+ parent: 2
+ - uid: 1411
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 2
+ - uid: 1412
+ components:
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 2
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 2
+ - uid: 1414
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 2
+ - uid: 1415
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 2
+ - uid: 1416
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 2
+ - uid: 1417
+ components:
+ - type: Transform
+ pos: 4.5,11.5
+ parent: 2
+ - uid: 1418
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 2
+ - uid: 1419
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 2
+ - uid: 1420
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 2
+ - uid: 1421
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 2
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 2
+ - uid: 1423
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 2
+ - uid: 1424
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 2
+ - uid: 1425
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 2
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 2
+ - uid: 1427
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 2
+ - uid: 1428
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 2
+ - uid: 1429
+ components:
+ - type: Transform
+ pos: 7.5,13.5
+ parent: 2
+ - uid: 1430
+ components:
+ - type: Transform
+ pos: 7.5,12.5
+ parent: 2
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 2
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 2
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 2
+ - uid: 1440
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 2
+ - uid: 1441
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+ - uid: 1442
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 2
+ - uid: 1443
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 2
+ - uid: 1444
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: 4.5,-7.5
+ parent: 2
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: 4.5,-8.5
+ parent: 2
+ - uid: 1447
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 1449
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 1450
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 1451
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 1452
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 1453
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 1454
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 2
+ - uid: 1455
+ components:
+ - type: Transform
+ pos: -8.5,-10.5
+ parent: 2
+ - uid: 1456
+ components:
+ - type: Transform
+ pos: -8.5,-11.5
+ parent: 2
+ - uid: 1457
+ components:
+ - type: Transform
+ pos: -7.5,-10.5
+ parent: 2
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 2
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 2
+ - uid: 1460
+ components:
+ - type: Transform
+ pos: -12.5,-5.5
+ parent: 2
+ - uid: 1461
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 2
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: -7.5,-11.5
+ parent: 2
+ - uid: 1463
+ components:
+ - type: Transform
+ pos: -6.5,-10.5
+ parent: 2
+ - uid: 1464
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 2
+ - uid: 1465
+ components:
+ - type: Transform
+ pos: -6.5,-12.5
+ parent: 2
+ - uid: 1466
+ components:
+ - type: Transform
+ pos: -7.5,-12.5
+ parent: 2
+ - uid: 1467
+ components:
+ - type: Transform
+ pos: -8.5,-12.5
+ parent: 2
+ - uid: 1468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-13.5
+ parent: 2
+ - uid: 1469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-13.5
+ parent: 2
+ - uid: 1470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-18.5
+ parent: 2
+ - uid: 1471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-17.5
+ parent: 2
+ - uid: 1472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-13.5
+ parent: 2
+ - uid: 1473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-16.5
+ parent: 2
+ - uid: 1474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-15.5
+ parent: 2
+ - uid: 1475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-14.5
+ parent: 2
+ - uid: 1476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-19.5
+ parent: 2
+ - uid: 1477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-19.5
+ parent: 2
+ - uid: 1478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-19.5
+ parent: 2
+ - uid: 1479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-17.5
+ parent: 2
+ - uid: 1480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-16.5
+ parent: 2
+ - uid: 1481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-15.5
+ parent: 2
+ - uid: 1482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-17.5
+ parent: 2
+ - uid: 1483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-16.5
+ parent: 2
+ - uid: 1484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-15.5
+ parent: 2
+ - uid: 1485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-16.5
+ parent: 2
+ - uid: 1486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 1487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-16.5
+ parent: 2
+ - uid: 1488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-16.5
+ parent: 2
+ - uid: 1489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-16.5
+ parent: 2
+ - uid: 1490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-16.5
+ parent: 2
+ - uid: 1491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-15.5
+ parent: 2
+ - uid: 1492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-14.5
+ parent: 2
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: -13.5,-4.5
+ parent: 2
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: -13.5,-5.5
+ parent: 2
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: -14.5,-4.5
+ parent: 2
+ - uid: 1496
+ components:
+ - type: Transform
+ pos: -14.5,-5.5
+ parent: 2
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: -13.5,2.5
+ parent: 2
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: -13.5,1.5
+ parent: 2
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: -14.5,2.5
+ parent: 2
+ - uid: 1500
+ components:
+ - type: Transform
+ pos: -14.5,1.5
+ parent: 2
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: -15.5,2.5
+ parent: 2
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: -15.5,1.5
+ parent: 2
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: -16.5,2.5
+ parent: 2
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: -16.5,1.5
+ parent: 2
+ - uid: 1505
+ components:
+ - type: Transform
+ pos: -17.5,2.5
+ parent: 2
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: -17.5,1.5
+ parent: 2
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: -18.5,2.5
+ parent: 2
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 2
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: -19.5,2.5
+ parent: 2
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: -20.5,2.5
+ parent: 2
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: -20.5,1.5
+ parent: 2
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: -21.5,2.5
+ parent: 2
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: -18.5,1.5
+ parent: 2
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: -22.5,2.5
+ parent: 2
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: -22.5,1.5
+ parent: 2
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: -23.5,2.5
+ parent: 2
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: -23.5,1.5
+ parent: 2
+ - uid: 1518
+ components:
+ - type: Transform
+ pos: -21.5,1.5
+ parent: 2
+ - uid: 1519
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 2
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 2
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 7.5,14.5
+ parent: 2
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 7.5,15.5
+ parent: 2
+ - uid: 1523
+ components:
+ - type: Transform
+ pos: 6.5,16.5
+ parent: 2
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 7.5,16.5
+ parent: 2
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 2
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 2
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 2
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 2
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 2
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: 10.5,15.5
+ parent: 2
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 11.5,16.5
+ parent: 2
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: 11.5,15.5
+ parent: 2
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 12.5,16.5
+ parent: 2
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 12.5,15.5
+ parent: 2
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 2
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 2
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 2
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 2
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 2
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 2
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 2
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 2
+ - uid: 1543
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 2
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: -5.5,14.5
+ parent: 2
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: -6.5,14.5
+ parent: 2
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: -35.5,-8.5
+ parent: 2
+ - uid: 1547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-16.5
+ parent: 2
+ - uid: 1548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-17.5
+ parent: 2
+ - uid: 1549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-18.5
+ parent: 2
+ - uid: 1550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-16.5
+ parent: 2
+ - uid: 1551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-17.5
+ parent: 2
+ - uid: 1552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-18.5
+ parent: 2
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: -22.5,3.5
+ parent: 2
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: -21.5,3.5
+ parent: 2
+ - uid: 1555
+ components:
+ - type: Transform
+ pos: -19.5,3.5
+ parent: 2
+ - uid: 1556
+ components:
+ - type: Transform
+ pos: -18.5,3.5
+ parent: 2
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: -20.5,3.5
+ parent: 2
+ - uid: 1558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,9.5
+ parent: 2
+ - uid: 1559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,8.5
+ parent: 2
+ - uid: 1560
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,7.5
+ parent: 2
+ - uid: 1561
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,7.5
+ parent: 2
+ - uid: 1562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,8.5
+ parent: 2
+ - uid: 1563
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,9.5
+ parent: 2
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: -26.5,3.5
+ parent: 2
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: -25.5,3.5
+ parent: 2
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: -41.5,14.5
+ parent: 2
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: -34.5,3.5
+ parent: 2
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: -34.5,4.5
+ parent: 2
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: -25.5,-0.5
+ parent: 2
+ - uid: 1570
+ components:
+ - type: Transform
+ pos: -34.5,10.5
+ parent: 2
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: -34.5,9.5
+ parent: 2
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: -47.5,14.5
+ parent: 2
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: -33.5,3.5
+ parent: 2
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: -33.5,5.5
+ parent: 2
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: -33.5,4.5
+ parent: 2
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: -34.5,7.5
+ parent: 2
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: -34.5,8.5
+ parent: 2
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: -34.5,1.5
+ parent: 2
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: -34.5,2.5
+ parent: 2
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: -33.5,1.5
+ parent: 2
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: -31.5,1.5
+ parent: 2
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: -32.5,2.5
+ parent: 2
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: -32.5,1.5
+ parent: 2
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: -33.5,2.5
+ parent: 2
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: -37.5,12.5
+ parent: 2
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: -38.5,12.5
+ parent: 2
+ - uid: 1587
+ components:
+ - type: Transform
+ pos: -40.5,12.5
+ parent: 2
+ - uid: 1588
+ components:
+ - type: Transform
+ pos: -41.5,12.5
+ parent: 2
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: -42.5,12.5
+ parent: 2
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: -44.5,12.5
+ parent: 2
+ - uid: 1591
+ components:
+ - type: Transform
+ pos: -45.5,12.5
+ parent: 2
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: -46.5,12.5
+ parent: 2
+ - uid: 1593
+ components:
+ - type: Transform
+ pos: -48.5,12.5
+ parent: 2
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: -49.5,12.5
+ parent: 2
+ - uid: 1595
+ components:
+ - type: Transform
+ pos: -50.5,12.5
+ parent: 2
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: -52.5,12.5
+ parent: 2
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: -53.5,12.5
+ parent: 2
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: -54.5,12.5
+ parent: 2
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: -56.5,12.5
+ parent: 2
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: -57.5,12.5
+ parent: 2
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: -58.5,12.5
+ parent: 2
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: -60.5,12.5
+ parent: 2
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: -61.5,12.5
+ parent: 2
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: -61.5,-8.5
+ parent: 2
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: -60.5,-8.5
+ parent: 2
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: -58.5,-8.5
+ parent: 2
+ - uid: 1607
+ components:
+ - type: Transform
+ pos: -57.5,-8.5
+ parent: 2
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: -56.5,-8.5
+ parent: 2
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: -54.5,-8.5
+ parent: 2
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: -53.5,-8.5
+ parent: 2
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: -52.5,-8.5
+ parent: 2
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: -50.5,-8.5
+ parent: 2
+ - uid: 1613
+ components:
+ - type: Transform
+ pos: -49.5,-8.5
+ parent: 2
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: -48.5,-8.5
+ parent: 2
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: -46.5,-8.5
+ parent: 2
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: -45.5,-8.5
+ parent: 2
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: -44.5,-8.5
+ parent: 2
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: -42.5,-8.5
+ parent: 2
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: -41.5,-8.5
+ parent: 2
+ - uid: 1620
+ components:
+ - type: Transform
+ pos: -40.5,-8.5
+ parent: 2
+ - uid: 1621
+ components:
+ - type: Transform
+ pos: -38.5,-8.5
+ parent: 2
+ - uid: 1622
+ components:
+ - type: Transform
+ pos: -37.5,-8.5
+ parent: 2
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: -36.5,11.5
+ parent: 2
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: -36.5,12.5
+ parent: 2
+ - uid: 1625
+ components:
+ - type: Transform
+ pos: -36.5,3.5
+ parent: 2
+ - uid: 1626
+ components:
+ - type: Transform
+ pos: -36.5,2.5
+ parent: 2
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: -36.5,10.5
+ parent: 2
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: -36.5,0.5
+ parent: 2
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: -36.5,-4.5
+ parent: 2
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: -36.5,-5.5
+ parent: 2
+ - uid: 1631
+ components:
+ - type: Transform
+ pos: -36.5,-8.5
+ parent: 2
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: -36.5,-7.5
+ parent: 2
+ - uid: 1633
+ components:
+ - type: Transform
+ pos: -36.5,-2.5
+ parent: 2
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: -36.5,7.5
+ parent: 2
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: -36.5,-6.5
+ parent: 2
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: -31.5,3.5
+ parent: 2
+ - uid: 1637
+ components:
+ - type: Transform
+ pos: -30.5,2.5
+ parent: 2
+ - uid: 1638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-14.5
+ parent: 2
+ - uid: 1639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-15.5
+ parent: 2
+ - uid: 1640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-16.5
+ parent: 2
+ - uid: 1641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-17.5
+ parent: 2
+ - uid: 1642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-17.5
+ parent: 2
+ - uid: 1643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-16.5
+ parent: 2
+ - uid: 1644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-15.5
+ parent: 2
+ - uid: 1645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-14.5
+ parent: 2
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: -19.5,22.5
+ parent: 2
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: -18.5,22.5
+ parent: 2
+ - uid: 1648
+ components:
+ - type: Transform
+ pos: -16.5,18.5
+ parent: 2
+ - uid: 1649
+ components:
+ - type: Transform
+ pos: -16.5,19.5
+ parent: 2
+ - uid: 1650
+ components:
+ - type: Transform
+ pos: -61.5,13.5
+ parent: 2
+ - uid: 1651
+ components:
+ - type: Transform
+ pos: -61.5,-9.5
+ parent: 2
+ - uid: 1652
+ components:
+ - type: Transform
+ pos: -57.5,-9.5
+ parent: 2
+ - uid: 1653
+ components:
+ - type: Transform
+ pos: -53.5,-9.5
+ parent: 2
+ - uid: 1654
+ components:
+ - type: Transform
+ pos: -52.5,-9.5
+ parent: 2
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: -51.5,-9.5
+ parent: 2
+ - uid: 1656
+ components:
+ - type: Transform
+ pos: -50.5,-9.5
+ parent: 2
+ - uid: 1657
+ components:
+ - type: Transform
+ pos: -49.5,-9.5
+ parent: 2
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: -44.5,-9.5
+ parent: 2
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: -45.5,-9.5
+ parent: 2
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: -41.5,-9.5
+ parent: 2
+ - uid: 1661
+ components:
+ - type: Transform
+ pos: -40.5,-9.5
+ parent: 2
+ - uid: 1662
+ components:
+ - type: Transform
+ pos: -39.5,-9.5
+ parent: 2
+ - uid: 1663
+ components:
+ - type: Transform
+ pos: -38.5,-9.5
+ parent: 2
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: -38.5,13.5
+ parent: 2
+ - uid: 1665
+ components:
+ - type: Transform
+ pos: -39.5,13.5
+ parent: 2
+ - uid: 1666
+ components:
+ - type: Transform
+ pos: -40.5,13.5
+ parent: 2
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: -41.5,13.5
+ parent: 2
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: -45.5,13.5
+ parent: 2
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: -46.5,13.5
+ parent: 2
+ - uid: 1670
+ components:
+ - type: Transform
+ pos: -47.5,13.5
+ parent: 2
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: -48.5,13.5
+ parent: 2
+ - uid: 1672
+ components:
+ - type: Transform
+ pos: -53.5,13.5
+ parent: 2
+ - uid: 1673
+ components:
+ - type: Transform
+ pos: -57.5,13.5
+ parent: 2
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: -58.5,13.5
+ parent: 2
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: -35.5,10.5
+ parent: 2
+ - uid: 1676
+ components:
+ - type: Transform
+ pos: -31.5,2.5
+ parent: 2
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: -30.5,1.5
+ parent: 2
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: -36.5,1.5
+ parent: 2
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: -33.5,6.5
+ parent: 2
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: -40.5,14.5
+ parent: 2
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: -33.5,10.5
+ parent: 2
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: -33.5,11.5
+ parent: 2
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: -33.5,12.5
+ parent: 2
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: -34.5,0.5
+ parent: 2
+ - uid: 1685
+ components:
+ - type: Transform
+ pos: -34.5,-0.5
+ parent: 2
+ - uid: 1686
+ components:
+ - type: Transform
+ pos: -34.5,-1.5
+ parent: 2
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: -34.5,-2.5
+ parent: 2
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: -34.5,-3.5
+ parent: 2
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: -39.5,-10.5
+ parent: 2
+ - uid: 1690
+ components:
+ - type: Transform
+ pos: -40.5,-10.5
+ parent: 2
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: -46.5,14.5
+ parent: 2
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: -34.5,-7.5
+ parent: 2
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: -34.5,-8.5
+ parent: 2
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: -33.5,0.5
+ parent: 2
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: -33.5,-0.5
+ parent: 2
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: -33.5,-1.5
+ parent: 2
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: -51.5,-10.5
+ parent: 2
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: -33.5,-3.5
+ parent: 2
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: -33.5,-4.5
+ parent: 2
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: -33.5,-5.5
+ parent: 2
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: -33.5,-6.5
+ parent: 2
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: -33.5,-7.5
+ parent: 2
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: -52.5,-10.5
+ parent: 2
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: -31.5,0.5
+ parent: 2
+ - uid: 1705
+ components:
+ - type: Transform
+ pos: -32.5,3.5
+ parent: 2
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: -32.5,4.5
+ parent: 2
+ - uid: 1707
+ components:
+ - type: Transform
+ pos: -32.5,0.5
+ parent: 2
+ - uid: 1708
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 2
+ - uid: 1709
+ components:
+ - type: Transform
+ pos: -38.5,-12.5
+ parent: 2
+ - uid: 1710
+ components:
+ - type: Transform
+ pos: -36.5,-12.5
+ parent: 2
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: -35.5,-12.5
+ parent: 2
+ - uid: 1712
+ components:
+ - type: Transform
+ pos: -34.5,-12.5
+ parent: 2
+ - uid: 1713
+ components:
+ - type: Transform
+ pos: -37.5,-12.5
+ parent: 2
+ - uid: 1714
+ components:
+ - type: Transform
+ pos: -34.5,16.5
+ parent: 2
+ - uid: 1715
+ components:
+ - type: Transform
+ pos: -33.5,16.5
+ parent: 2
+ - uid: 1716
+ components:
+ - type: Transform
+ pos: -32.5,16.5
+ parent: 2
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: -31.5,16.5
+ parent: 2
+ - uid: 1718
+ components:
+ - type: Transform
+ pos: -30.5,16.5
+ parent: 2
+ - uid: 1719
+ components:
+ - type: Transform
+ pos: -37.5,-7.5
+ parent: 2
+ - uid: 1720
+ components:
+ - type: Transform
+ pos: -37.5,11.5
+ parent: 2
+ - uid: 1721
+ components:
+ - type: Transform
+ pos: -37.5,8.5
+ parent: 2
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: -37.5,-2.5
+ parent: 2
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: -37.5,-3.5
+ parent: 2
+ - uid: 1724
+ components:
+ - type: Transform
+ pos: -37.5,-4.5
+ parent: 2
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: -37.5,7.5
+ parent: 2
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: -37.5,6.5
+ parent: 2
+ - uid: 1727
+ components:
+ - type: Transform
+ pos: -37.5,2.5
+ parent: 2
+ - uid: 1728
+ components:
+ - type: Transform
+ pos: -37.5,1.5
+ parent: 2
+ - uid: 1729
+ components:
+ - type: Transform
+ pos: 16.5,3.5
+ parent: 2
+ - uid: 1730
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 2
+ - uid: 1731
+ components:
+ - type: Transform
+ pos: -26.5,-6.5
+ parent: 2
+ - uid: 1732
+ components:
+ - type: Transform
+ pos: -28.5,8.5
+ parent: 2
+ - uid: 1733
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 1734
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 1735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-15.5
+ parent: 2
+- proto: Chair
+ entities:
+ - uid: 1736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,15.5
+ parent: 2
+- proto: ChairFoldingSpawnFolded
+ entities:
+ - uid: 1737
+ components:
+ - type: Transform
+ pos: -23.43237,11.576564
+ parent: 2
+ - uid: 1738
+ components:
+ - type: Transform
+ pos: -23.52612,11.935939
+ parent: 2
+ - uid: 1739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.4996822,6.9148936
+ parent: 2
+ - uid: 1740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.4996822,6.9148936
+ parent: 2
+ - uid: 1741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.4996822,6.9148936
+ parent: 2
+- proto: ChairOfficeDark
+ entities:
+ - uid: 1742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.4983997,-14.724453
+ parent: 2
+ - uid: 1743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.514025,-14.724453
+ parent: 2
+ - uid: 1744
+ components:
+ - type: Transform
+ pos: -20,9
+ parent: 2
+ - uid: 1745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.47224,-1.1415508
+ parent: 2
+- proto: ChairPilotSeat
+ entities:
+ - uid: 1746
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+- proto: ChairWood
+ entities:
+ - uid: 1747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.489138,-8.321324
+ parent: 2
+- proto: CheckerBoard
+ entities:
+ - uid: 1748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.49906,14.607212
+ parent: 2
+- proto: ChemDispenser
+ entities:
+ - uid: 1749
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+ - uid: 1750
+ components:
+ - type: Transform
+ pos: 10.5,-15.5
+ parent: 2
+- proto: ChemicalPayload
+ entities:
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: 4.7203226,-17.304417
+ parent: 2
+ - uid: 1752
+ components:
+ - type: Transform
+ pos: 4.7203226,-17.304417
+ parent: 2
+ - uid: 1753
+ components:
+ - type: Transform
+ pos: 4.7203226,-17.304417
+ parent: 2
+- proto: ChemicalSynthesisKit
+ entities:
+ - uid: 1754
+ components:
+ - type: Transform
+ pos: 8.521119,-14.541671
+ parent: 2
+- proto: ChemistryHotplate
+ entities:
+ - uid: 1755
+ components:
+ - type: Transform
+ pos: 9.5,-13.5
+ parent: 2
+ - uid: 1756
+ components:
+ - type: Transform
+ pos: 7.5,-13.5
+ parent: 2
+- proto: ChemMaster
+ entities:
+ - uid: 1757
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 2
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+- proto: ChessBoard
+ entities:
+ - uid: 1759
+ components:
+ - type: Transform
+ pos: -15.017025,9.518717
+ parent: 2
+- proto: CigarGoldCase
+ entities:
+ - uid: 1760
+ components:
+ - type: Transform
+ pos: 7.2963314,6.6780577
+ parent: 2
+- proto: CleanerDispenser
+ entities:
+ - uid: 1761
+ components:
+ - type: Transform
+ pos: -20.5,-10.5
+ parent: 2
+- proto: ClosetChefFilled
+ entities:
+ - uid: 1762
+ components:
+ - type: Transform
+ pos: -19.5,13.5
+ parent: 2
+- proto: ClosetToolFilled
+ entities:
+ - uid: 1763
+ components:
+ - type: Transform
+ pos: -10.5,-19.5
+ parent: 2
+- proto: ClothingBackpackDuffelSyndicate
+ entities:
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: 17.540028,-1.3454366
+ parent: 2
+ - uid: 1765
+ components:
+ - type: Transform
+ pos: 17.540028,-1.3454366
+ parent: 2
+ - uid: 1766
+ components:
+ - type: Transform
+ pos: 17.540028,-1.3454366
+ parent: 2
+ - uid: 1767
+ components:
+ - type: Transform
+ pos: 17.540028,-1.3454366
+ parent: 2
+- proto: ClothingBackpackDuffelSyndicateFilledMedical
+ entities:
+ - uid: 1768
+ components:
+ - type: Transform
+ pos: 0.542505,-17.349453
+ parent: 2
+- proto: ClothingBackpackMerc
+ entities:
+ - uid: 1770
+ components:
+ - type: Transform
+ parent: 1769
+ - type: Clothing
+ inSlotFlag: BACK
+ inSlot: back
+ - type: Physics
+ canCollide: False
+- proto: ClothingBackpackSyndicate
+ entities:
+ - uid: 1777
+ components:
+ - type: Transform
+ parent: 1776
+ - type: Clothing
+ inSlotFlag: BACK
+ inSlot: back
+ - type: Physics
+ canCollide: False
+ - type: GroupExamine
+ group:
+ - hoverMessage: ""
+ contextText: verb-examine-group-other
+ icon: /Textures/Interface/examine-star.png
+ components:
+ - Armor
+ - ClothingSpeedModifier
+ entries:
+ - message: >-
+ It provides the following protection:
+
+ - [color=blue]Stamina[/color] damage reduced by [color=lightblue]0%[/color].
+
+ - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]90%[/color].
+ priority: 0
+ component: Armor
+ title: null
+- proto: ClothingBackpackWaterTank
+ entities:
+ - uid: 1783
+ components:
+ - type: Transform
+ pos: -18.500195,-11.724729
+ parent: 2
+- proto: ClothingBeltMercWebbing
+ entities:
+ - uid: 1784
+ components:
+ - type: Transform
+ pos: 14.711664,15.28885
+ parent: 2
+- proto: ClothingEyesGlassesChemical
+ entities:
+ - uid: 1785
+ components:
+ - type: Transform
+ pos: 8.479592,-7.1767707
+ parent: 2
+ - uid: 1786
+ components:
+ - type: Transform
+ pos: 8.479592,-7.4423957
+ parent: 2
+- proto: ClothingEyesGlassesHiddenSecurity
+ entities:
+ - uid: 1778
+ components:
+ - type: Transform
+ parent: 1776
+ - type: Clothing
+ inSlotFlag: EYES
+ inSlot: eyes
+ - type: Physics
+ canCollide: False
+- proto: ClothingEyesGlassesMercenary
+ entities:
+ - uid: 1771
+ components:
+ - type: Transform
+ parent: 1769
+ - type: Clothing
+ inSlotFlag: EYES
+ inSlot: eyes
+ - type: Physics
+ canCollide: False
+- proto: ClothingEyesHudMedSec
+ entities:
+ - uid: 1787
+ components:
+ - type: Transform
+ pos: 3.4823878,-13.929321
+ parent: 2
+- proto: ClothingHandsGlovesColorBlue
+ entities:
+ - uid: 1789
+ components:
+ - type: Transform
+ parent: 1788
+ - type: Physics
+ canCollide: False
+- proto: ClothingHandsMercGlovesCombat
+ entities:
+ - uid: 1795
+ components:
+ - type: Transform
+ parent: 1794
+ - type: Physics
+ canCollide: False
+- proto: ClothingHandsTacticalMaidGloves
+ entities:
+ - uid: 1798
+ components:
+ - type: Transform
+ parent: 1797
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHatBluesoft
+ entities:
+ - uid: 1790
+ components:
+ - type: Transform
+ parent: 1788
+ - type: Physics
+ canCollide: False
+- proto: ClothingHeadHatSyndieMAA
+ entities:
+ - uid: 1779
+ components:
+ - type: Transform
+ parent: 1776
+ - type: Clothing
+ inSlotFlag: HEAD
+ inSlot: head
+ - type: Physics
+ canCollide: False
+- proto: ClothingHeadHatTacticalMaidHeadband
+ entities:
+ - uid: 1801
+ components:
+ - type: Transform
+ parent: 1800
+ - type: Clothing
+ inSlotFlag: HEAD
+ inSlot: head
+ - type: Physics
+ canCollide: False
+- proto: ClothingHeadHelmetMerc
+ entities:
+ - uid: 1772
+ components:
+ - type: Transform
+ parent: 1769
+ - type: Clothing
+ inSlotFlag: HEAD
+ inSlot: head
+ - type: Physics
+ canCollide: False
+- proto: ClothingMaskGasMerc
+ entities:
+ - uid: 1773
+ components:
+ - type: Transform
+ parent: 1769
+ - type: Clothing
+ inSlotFlag: MASK
+ inSlot: mask
+ - type: Physics
+ canCollide: False
+- proto: ClothingMaskMuzzle
+ entities:
+ - uid: 1803
+ components:
+ - type: Transform
+ pos: -8.4079685,16.403774
+ parent: 2
+- proto: ClothingNeckCloakNanotrasen
+ entities:
+ - uid: 1791
+ components:
+ - type: Transform
+ parent: 1788
+ - type: Physics
+ canCollide: False
+- proto: ClothingNeckCloakPirateCap
+ entities:
+ - uid: 1780
+ components:
+ - type: Transform
+ parent: 1776
+ - type: Clothing
+ inSlotFlag: NECK
+ inSlot: neck
+ - type: Physics
+ canCollide: False
+- proto: ClothingNeckStethoscope
+ entities:
+ - uid: 1804
+ components:
+ - type: Transform
+ pos: 3.4606102,-16.581186
+ parent: 2
+- proto: ClothingOuterStraightjacket
+ entities:
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: -8.5017185,16.052212
+ parent: 2
+- proto: ClothingOuterVestWebMerc
+ entities:
+ - uid: 1774
+ components:
+ - type: Transform
+ parent: 1769
+ - type: Clothing
+ inSlotFlag: OUTERCLOTHING
+ inSlot: outerClothing
+ - type: Physics
+ canCollide: False
+- proto: ClothingOuterWinterSyndieCapArmored
+ entities:
+ - uid: 1781
+ components:
+ - type: Transform
+ parent: 1776
+ - type: Clothing
+ inSlotFlag: OUTERCLOTHING
+ inSlot: outerClothing
+ - type: Physics
+ canCollide: False
+- proto: ClothingShoesBootsMerc
+ entities:
+ - uid: 1796
+ components:
+ - type: Transform
+ parent: 1794
+ - type: Physics
+ canCollide: False
+- proto: ClothingShoesBootsSalvage
+ entities:
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: -13.87743,-23.676912
+ parent: 2
+ - uid: 1807
+ components:
+ - type: Transform
+ pos: -13.53368,-23.192537
+ parent: 2
+- proto: ClothingShoesBootsWinterSyndicate
+ entities:
+ - uid: 1808
+ components:
+ - type: Transform
+ pos: 11.680821,18.175533
+ parent: 2
+- proto: ClothingShoesHighheelBoots
+ entities:
+ - uid: 1799
+ components:
+ - type: Transform
+ parent: 1797
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpskirtTacticalMaid
+ entities:
+ - uid: 1802
+ components:
+ - type: Transform
+ parent: 1800
+ - type: Clothing
+ inSlotFlag: INNERCLOTHING
+ inSlot: jumpsuit
+ - type: Physics
+ canCollide: False
+- proto: ClothingUniformJumpsuitMercenary
+ entities:
+ - uid: 1775
+ components:
+ - type: Transform
+ parent: 1769
+ - type: Clothing
+ inSlotFlag: INNERCLOTHING
+ inSlot: jumpsuit
+ - type: Physics
+ canCollide: False
+- proto: ClothingUniformJumpsuitNanotrasen
+ entities:
+ - uid: 1792
+ components:
+ - type: Transform
+ parent: 1788
+ - type: Physics
+ canCollide: False
+- proto: ClothingUniformJumpsuitSyndieFormal
+ entities:
+ - uid: 1782
+ components:
+ - type: Transform
+ parent: 1776
+ - type: Clothing
+ inSlotFlag: INNERCLOTHING
+ inSlot: jumpsuit
+ - type: Physics
+ canCollide: False
+- proto: CombatKnife
+ entities:
+ - uid: 1809
+ components:
+ - type: Transform
+ pos: -28.605858,-0.8710441
+ parent: 2
+ - uid: 1810
+ components:
+ - type: Transform
+ pos: -28.324608,-0.8710441
+ parent: 2
+- proto: ComfyChair
+ entities:
+ - uid: 1811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 1812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 1813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 1814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 2
+ - uid: 1815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-0.5
+ parent: 2
+ - uid: 1816
+ components:
+ - type: Transform
+ pos: 16.5,15.5
+ parent: 2
+ - uid: 1817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,14.5
+ parent: 2
+ - uid: 1818
+ components:
+ - type: Transform
+ pos: -15.5,10.5
+ parent: 2
+ - uid: 1819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,7.5
+ parent: 2
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: -14.5,10.5
+ parent: 2
+ - uid: 1821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,7.5
+ parent: 2
+- proto: computerBodyScanner
+ entities:
+ - uid: 1822
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 2
+- proto: ComputerId
+ entities:
+ - uid: 1823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,9.5
+ parent: 2
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 1824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-16.5
+ parent: 2
+- proto: ComputerRadar
+ entities:
+ - uid: 1825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,8.5
+ parent: 2
+- proto: ComputerSurveillanceCameraMonitor
+ entities:
+ - uid: 1826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,7.5
+ parent: 2
+- proto: ComputerSurveillanceWirelessCameraMonitor
+ entities:
+ - uid: 1827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,7.5
+ parent: 2
+- proto: ComputerTelevision
+ entities:
+ - uid: 1828
+ components:
+ - type: Transform
+ pos: -18.5,-7.5
+ parent: 2
+- proto: ContrabassInstrument
+ entities:
+ - uid: 1829
+ components:
+ - type: Transform
+ pos: -18.5,-9.5
+ parent: 2
+- proto: CrateBaseSecure
+ entities:
+ - uid: 1830
+ components:
+ - type: Transform
+ pos: -9.5,-15.5
+ parent: 2
+- proto: CrateFreezer
+ entities:
+ - uid: 1831
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 2
+- proto: CrateTrashCart
+ entities:
+ - uid: 1832
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 2
+- proto: CrystalOrange
+ entities:
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 2
+ - uid: 1834
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 2
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: -21.5,-19.5
+ parent: 2
+ - uid: 1836
+ components:
+ - type: Transform
+ pos: 15.5,12.5
+ parent: 2
+ - uid: 1837
+ components:
+ - type: Transform
+ pos: -13.5,23.5
+ parent: 2
+ - uid: 1838
+ components:
+ - type: Transform
+ pos: 12.5,-4.5
+ parent: 2
+ - uid: 1839
+ components:
+ - type: Transform
+ pos: 4.5,-20.5
+ parent: 2
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 1.5,-22.5
+ parent: 2
+ - uid: 1841
+ components:
+ - type: Transform
+ pos: -11.5,-22.5
+ parent: 2
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: -5.5,-21.5
+ parent: 2
+ - uid: 1843
+ components:
+ - type: Transform
+ pos: -4.5,-23.5
+ parent: 2
+ - uid: 1844
+ components:
+ - type: Transform
+ pos: -18.5,-21.5
+ parent: 2
+ - uid: 1845
+ components:
+ - type: Transform
+ pos: -24.5,-15.5
+ parent: 2
+- proto: CurtainsRed
+ entities:
+ - uid: 1846
+ components:
+ - type: Transform
+ pos: 16.5,6.5
+ parent: 2
+ - uid: 1847
+ components:
+ - type: Transform
+ pos: 15.5,6.5
+ parent: 2
+- proto: CurtainsRedOpen
+ entities:
+ - uid: 1848
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 2
+ - uid: 1849
+ components:
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 2
+ - uid: 1850
+ components:
+ - type: Transform
+ pos: 15.5,18.5
+ parent: 2
+- proto: CyberPen
+ entities:
+ - uid: 1851
+ components:
+ - type: Transform
+ pos: -19.752571,10.596532
+ parent: 2
+ - uid: 1852
+ components:
+ - type: Transform
+ pos: 1.1249077,3.6900315
+ parent: 2
+ - uid: 1853
+ components:
+ - type: Transform
+ pos: 17.637136,2.0634985
+ parent: 2
+- proto: DeathRattleImplant
+ entities:
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: 2.5168278,-17.335794
+ parent: 2
+- proto: DiceBag
+ entities:
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: -14.3373375,9.096842
+ parent: 2
+- proto: DogBed
+ entities:
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: -20.5,-0.5
+ parent: 2
+- proto: Dresser
+ entities:
+ - uid: 1788
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 2
+ - type: Storage
+ storedItems:
+ 1792:
+ position: 0,0
+ _rotation: South
+ 1790:
+ position: 2,0
+ _rotation: East
+ 1791:
+ position: 4,0
+ _rotation: South
+ 1789:
+ position: 5,0
+ _rotation: East
+ 1793:
+ position: 2,1
+ _rotation: East
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1792
+ - 1790
+ - 1791
+ - 1789
+ - 1793
+ - uid: 1794
+ components:
+ - type: Transform
+ pos: 14.5,17.5
+ parent: 2
+ - type: Storage
+ storedItems:
+ 1796:
+ position: 0,0
+ _rotation: South
+ 1795:
+ position: 2,0
+ _rotation: East
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1796
+ - 1795
+ - uid: 1857
+ components:
+ - type: Transform
+ pos: 10.5,21.5
+ parent: 2
+ - type: Storage
+ storedItems:
+ 1858:
+ position: 0,0
+ _rotation: South
+ 1859:
+ position: 1,0
+ _rotation: South
+ 1860:
+ position: 2,0
+ _rotation: South
+ 1861:
+ position: 3,0
+ _rotation: South
+ 1862:
+ position: 4,0
+ _rotation: South
+ 1863:
+ position: 5,0
+ _rotation: South
+ 1864:
+ position: 6,0
+ _rotation: South
+ 1865:
+ position: 0,2
+ _rotation: South
+ 1866:
+ position: 1,2
+ _rotation: South
+ 1867:
+ position: 2,2
+ _rotation: South
+ 1868:
+ position: 3,2
+ _rotation: South
+ 1869:
+ position: 4,2
+ _rotation: South
+ 1870:
+ position: 5,2
+ _rotation: South
+ 1871:
+ position: 6,2
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1858
+ - 1859
+ - 1860
+ - 1861
+ - 1862
+ - 1863
+ - 1864
+ - 1865
+ - 1866
+ - 1867
+ - 1868
+ - 1869
+ - 1870
+ - 1871
+- proto: DrinkAtomicBombGlass
+ entities:
+ - uid: 1872
+ components:
+ - type: Transform
+ pos: -21.555405,-4.751143
+ parent: 2
+- proto: DrinkB52Glass
+ entities:
+ - uid: 1873
+ components:
+ - type: Transform
+ pos: -21.438217,-6.157393
+ parent: 2
+- proto: DrinkInc
+ entities:
+ - uid: 1972
+ components:
+ - type: Transform
+ parent: 1971
+ - type: Physics
+ canCollide: False
+- proto: DrinkNothing
+ entities:
+ - uid: 1874
+ components:
+ - type: Transform
+ pos: -16.733604,19.78254
+ parent: 2
+- proto: DrinkNuclearColaGlass
+ entities:
+ - uid: 1875
+ components:
+ - type: Transform
+ pos: -18.899864,16.804806
+ parent: 2
+- proto: DrinkShaker
+ entities:
+ - uid: 1876
+ components:
+ - type: Transform
+ pos: -24.678978,-5.475932
+ parent: 2
+ - uid: 1877
+ components:
+ - type: Transform
+ pos: -24.397728,-5.335307
+ parent: 2
+- proto: DrinkSyndicatebomb
+ entities:
+ - uid: 1878
+ components:
+ - type: Transform
+ pos: 10.524571,18.587831
+ parent: 2
+ - uid: 1879
+ components:
+ - type: Transform
+ pos: -21.60228,-2.782393
+ parent: 2
+ - uid: 1880
+ components:
+ - type: Transform
+ pos: -21.531967,-3.766768
+ parent: 2
+- proto: DrinkWhiskeyBottleFull
+ entities:
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: -26.580713,6.7805796
+ parent: 2
+- proto: EmpGrenade
+ entities:
+ - uid: 1882
+ components:
+ - type: Transform
+ pos: -25.865889,5.6340756
+ parent: 2
+ - uid: 1883
+ components:
+ - type: Transform
+ pos: -25.537764,5.6340756
+ parent: 2
+- proto: ExplosivePayload
+ entities:
+ - uid: 1884
+ components:
+ - type: Transform
+ pos: 5.0328226,-17.398167
+ parent: 2
+ - type: CMExplosionEffect
+- proto: FaxMachineSyndie
+ entities:
+ - uid: 1885
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+- proto: FenceMetalBroken
+ entities:
+ - uid: 1886
+ components:
+ - type: Transform
+ pos: -13.5,13.5
+ parent: 2
+- proto: FenceMetalCorner
+ entities:
+ - uid: 1887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,24.5
+ parent: 2
+ - uid: 1888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,24.5
+ parent: 2
+ - uid: 1889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,23.5
+ parent: 2
+ - uid: 1890
+ components:
+ - type: Transform
+ pos: -14.5,23.5
+ parent: 2
+ - uid: 1891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,24.5
+ parent: 2
+ - uid: 1892
+ components:
+ - type: Transform
+ pos: 13.5,-17.5
+ parent: 2
+- proto: FenceMetalEnd
+ entities:
+ - uid: 1893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,8.5
+ parent: 2
+ - uid: 1894
+ components:
+ - type: Transform
+ pos: -36.5,12.5
+ parent: 2
+ - uid: 1895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-8.5
+ parent: 2
+ - uid: 1896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-1.5
+ parent: 2
+ - uid: 1897
+ components:
+ - type: Transform
+ pos: -36.5,-3.5
+ parent: 2
+ - uid: 1898
+ components:
+ - type: Transform
+ pos: -36.5,6.5
+ parent: 2
+- proto: FenceMetalGate
+ entities:
+ - uid: 1899
+ components:
+ - type: Transform
+ pos: -14.5,17.5
+ parent: 2
+- proto: FenceMetalStraight
+ entities:
+ - uid: 1900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,15.5
+ parent: 2
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: 6.5,-4.5
+ parent: 2
+ - uid: 1902
+ components:
+ - type: Transform
+ pos: 12.5,11.5
+ parent: 2
+ - uid: 1903
+ components:
+ - type: Transform
+ pos: 8.5,11.5
+ parent: 2
+ - uid: 1904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,24.5
+ parent: 2
+ - uid: 1905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,24.5
+ parent: 2
+ - uid: 1906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,24.5
+ parent: 2
+ - uid: 1907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,24.5
+ parent: 2
+ - uid: 1908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,24.5
+ parent: 2
+ - uid: 1909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,24.5
+ parent: 2
+ - uid: 1910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,24.5
+ parent: 2
+ - uid: 1911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,18.5
+ parent: 2
+ - uid: 1912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,16.5
+ parent: 2
+ - uid: 1913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,17.5
+ parent: 2
+ - uid: 1914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,20.5
+ parent: 2
+ - uid: 1915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,19.5
+ parent: 2
+ - uid: 1916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,23.5
+ parent: 2
+ - uid: 1917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,22.5
+ parent: 2
+ - uid: 1918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,16.5
+ parent: 2
+ - uid: 1919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,23.5
+ parent: 2
+ - uid: 1920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,22.5
+ parent: 2
+ - uid: 1921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,17.5
+ parent: 2
+ - uid: 1922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,21.5
+ parent: 2
+ - uid: 1923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,24.5
+ parent: 2
+ - uid: 1924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,24.5
+ parent: 2
+ - uid: 1925
+ components:
+ - type: Transform
+ pos: 6.5,-5.5
+ parent: 2
+ - uid: 1926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-13.5
+ parent: 2
+ - uid: 1927
+ components:
+ - type: Transform
+ pos: 5.5,23.5
+ parent: 2
+ - uid: 1928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,23.5
+ parent: 2
+ - uid: 1929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,22.5
+ parent: 2
+ - uid: 1930
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 2
+ - uid: 1931
+ components:
+ - type: Transform
+ pos: 11.5,-5.5
+ parent: 2
+ - uid: 1932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-7.5
+ parent: 2
+ - uid: 1933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-6.5
+ parent: 2
+ - uid: 1934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-5.5
+ parent: 2
+ - uid: 1935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-4.5
+ parent: 2
+ - uid: 1936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-0.5
+ parent: 2
+ - uid: 1937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,0.5
+ parent: 2
+ - uid: 1938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,1.5
+ parent: 2
+ - uid: 1939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,2.5
+ parent: 2
+ - uid: 1940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,3.5
+ parent: 2
+ - uid: 1941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-14.5
+ parent: 2
+ - uid: 1942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,24.5
+ parent: 2
+ - uid: 1943
+ components:
+ - type: Transform
+ pos: -15.5,22.5
+ parent: 2
+ - uid: 1944
+ components:
+ - type: Transform
+ pos: -15.5,21.5
+ parent: 2
+ - uid: 1945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,22.5
+ parent: 2
+ - uid: 1946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,8.5
+ parent: 2
+ - uid: 1947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,9.5
+ parent: 2
+ - uid: 1948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,7.5
+ parent: 2
+ - uid: 1949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,6.5
+ parent: 2
+ - uid: 1950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,-5.5
+ parent: 2
+ - uid: 1951
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,-7.5
+ parent: 2
+ - uid: 1952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,-6.5
+ parent: 2
+ - uid: 1953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-11.5
+ parent: 2
+ - uid: 1954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-11.5
+ parent: 2
+ - uid: 1955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-11.5
+ parent: 2
+ - uid: 1956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,15.5
+ parent: 2
+ - uid: 1957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,15.5
+ parent: 2
+ - uid: 1958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,15.5
+ parent: 2
+ - uid: 1959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-14.5
+ parent: 2
+ - uid: 1960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-15.5
+ parent: 2
+ - uid: 1961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-16.5
+ parent: 2
+ - uid: 1962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-17.5
+ parent: 2
+ - uid: 1963
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,22.5
+ parent: 2
+ - uid: 1964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,4.5
+ parent: 2
+ - uid: 1965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,9.5
+ parent: 2
+ - uid: 1966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,5.5
+ parent: 2
+ - uid: 1967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,10.5
+ parent: 2
+ - uid: 1968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,11.5
+ parent: 2
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 1969
+ components:
+ - type: Transform
+ pos: -23.765179,12.644984
+ parent: 2
+ - type: Pullable
+ prevFixedRotation: True
+ - uid: 1970
+ components:
+ - type: Transform
+ pos: 7.6339617,-2.5611024
+ parent: 2
+ - type: Pullable
+ prevFixedRotation: True
+- proto: filingCabinetTallRandom
+ entities:
+ - uid: 1971
+ components:
+ - type: Transform
+ pos: 6.925008,-2.500056
+ parent: 2
+ - type: Storage
+ storedItems:
+ 1972:
+ position: 4,3
+ _rotation: East
+ 1973:
+ position: 6,2
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1972
+ - 1973
+ - type: Pullable
+ prevFixedRotation: True
+- proto: FireExtinguisher
+ entities:
+ - uid: 1974
+ components:
+ - type: Transform
+ pos: -8.674296,17.048494
+ parent: 2
+- proto: Fireplace
+ entities:
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 2
+ - uid: 1976
+ components:
+ - type: Transform
+ pos: -22.5,-0.5
+ parent: 2
+- proto: FlippoEngravedLighter
+ entities:
+ - uid: 1977
+ components:
+ - type: Transform
+ pos: 7.7025814,6.5843077
+ parent: 2
+- proto: FloorDrain
+ entities:
+ - uid: 1978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1979
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: -21.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1983
+ components:
+ - type: Transform
+ pos: -10.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorLavaEntity
+ entities:
+ - uid: 1984
+ components:
+ - type: Transform
+ pos: -22.5,-16.5
+ parent: 2
+ - uid: 1985
+ components:
+ - type: Transform
+ pos: -23.5,-16.5
+ parent: 2
+ - uid: 1986
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 2
+ - uid: 1987
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 2
+ - uid: 1988
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 2
+ - uid: 1989
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 2
+ - uid: 1990
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 2
+ - uid: 1991
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 2
+ - uid: 1992
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+ - uid: 1993
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 1994
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 2
+ - uid: 1995
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 2
+ - uid: 1996
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 2
+ - uid: 1997
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 2
+ - uid: 1998
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 2
+ - uid: 1999
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 2
+ - uid: 2000
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 2
+ - uid: 2001
+ components:
+ - type: Transform
+ pos: -5.5,-5.5
+ parent: 2
+ - uid: 2002
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 2
+ - uid: 2003
+ components:
+ - type: Transform
+ pos: -7.5,-5.5
+ parent: 2
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: -7.5,-4.5
+ parent: 2
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: -7.5,-1.5
+ parent: 2
+ - uid: 2006
+ components:
+ - type: Transform
+ pos: -7.5,5.5
+ parent: 2
+ - uid: 2007
+ components:
+ - type: Transform
+ pos: -7.5,6.5
+ parent: 2
+ - uid: 2008
+ components:
+ - type: Transform
+ pos: -6.5,5.5
+ parent: 2
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: -6.5,6.5
+ parent: 2
+ - uid: 2010
+ components:
+ - type: Transform
+ pos: -6.5,7.5
+ parent: 2
+ - uid: 2011
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 2
+ - uid: 2012
+ components:
+ - type: Transform
+ pos: -15.5,4.5
+ parent: 2
+ - uid: 2013
+ components:
+ - type: Transform
+ pos: -14.5,4.5
+ parent: 2
+ - uid: 2014
+ components:
+ - type: Transform
+ pos: -14.5,-0.5
+ parent: 2
+ - uid: 2015
+ components:
+ - type: Transform
+ pos: -13.5,-2.5
+ parent: 2
+ - uid: 2016
+ components:
+ - type: Transform
+ pos: -13.5,-10.5
+ parent: 2
+ - uid: 2017
+ components:
+ - type: Transform
+ pos: -13.5,-9.5
+ parent: 2
+ - uid: 2018
+ components:
+ - type: Transform
+ pos: -14.5,-8.5
+ parent: 2
+ - uid: 2019
+ components:
+ - type: Transform
+ pos: -14.5,-9.5
+ parent: 2
+ - uid: 2020
+ components:
+ - type: Transform
+ pos: -12.5,-10.5
+ parent: 2
+ - uid: 2021
+ components:
+ - type: Transform
+ pos: -4.5,-11.5
+ parent: 2
+ - uid: 2022
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 2
+ - uid: 2023
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 2024
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - uid: 2025
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 2
+ - uid: 2026
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 2
+ - uid: 2027
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 2
+ - uid: 2028
+ components:
+ - type: Transform
+ pos: 15.5,-8.5
+ parent: 2
+ - uid: 2029
+ components:
+ - type: Transform
+ pos: 15.5,-7.5
+ parent: 2
+ - uid: 2030
+ components:
+ - type: Transform
+ pos: 15.5,-6.5
+ parent: 2
+ - uid: 2031
+ components:
+ - type: Transform
+ pos: 15.5,-5.5
+ parent: 2
+ - uid: 2032
+ components:
+ - type: Transform
+ pos: 16.5,-7.5
+ parent: 2
+ - uid: 2033
+ components:
+ - type: Transform
+ pos: 16.5,-6.5
+ parent: 2
+ - uid: 2034
+ components:
+ - type: Transform
+ pos: 16.5,-5.5
+ parent: 2
+ - uid: 2035
+ components:
+ - type: Transform
+ pos: 16.5,-8.5
+ parent: 2
+ - uid: 2036
+ components:
+ - type: Transform
+ pos: 17.5,-7.5
+ parent: 2
+ - uid: 2037
+ components:
+ - type: Transform
+ pos: 17.5,-6.5
+ parent: 2
+ - uid: 2038
+ components:
+ - type: Transform
+ pos: 14.5,-8.5
+ parent: 2
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: 14.5,-7.5
+ parent: 2
+ - uid: 2040
+ components:
+ - type: Transform
+ pos: 12.5,-10.5
+ parent: 2
+ - uid: 2041
+ components:
+ - type: Transform
+ pos: 13.5,-10.5
+ parent: 2
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: 12.5,-9.5
+ parent: 2
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: 12.5,-8.5
+ parent: 2
+ - uid: 2044
+ components:
+ - type: Transform
+ pos: 12.5,-7.5
+ parent: 2
+ - uid: 2045
+ components:
+ - type: Transform
+ pos: 13.5,-9.5
+ parent: 2
+ - uid: 2046
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - uid: 2047
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 2
+ - uid: 2048
+ components:
+ - type: Transform
+ pos: 7.5,-19.5
+ parent: 2
+ - uid: 2049
+ components:
+ - type: Transform
+ pos: 8.5,-19.5
+ parent: 2
+ - uid: 2050
+ components:
+ - type: Transform
+ pos: 9.5,-19.5
+ parent: 2
+ - uid: 2051
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 2
+ - uid: 2052
+ components:
+ - type: Transform
+ pos: 7.5,-20.5
+ parent: 2
+ - uid: 2053
+ components:
+ - type: Transform
+ pos: 8.5,-20.5
+ parent: 2
+ - uid: 2054
+ components:
+ - type: Transform
+ pos: 9.5,-20.5
+ parent: 2
+ - uid: 2055
+ components:
+ - type: Transform
+ pos: 7.5,-21.5
+ parent: 2
+ - uid: 2056
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 2
+ - uid: 2057
+ components:
+ - type: Transform
+ pos: -27.5,-13.5
+ parent: 2
+ - uid: 2058
+ components:
+ - type: Transform
+ pos: -27.5,-12.5
+ parent: 2
+ - uid: 2059
+ components:
+ - type: Transform
+ pos: -26.5,-13.5
+ parent: 2
+ - uid: 2060
+ components:
+ - type: Transform
+ pos: -26.5,-12.5
+ parent: 2
+ - uid: 2061
+ components:
+ - type: Transform
+ pos: -26.5,-11.5
+ parent: 2
+ - uid: 2062
+ components:
+ - type: Transform
+ pos: -25.5,-12.5
+ parent: 2
+ - uid: 2063
+ components:
+ - type: Transform
+ pos: -25.5,-13.5
+ parent: 2
+ - uid: 2064
+ components:
+ - type: Transform
+ pos: -25.5,-14.5
+ parent: 2
+ - uid: 2065
+ components:
+ - type: Transform
+ pos: -24.5,-13.5
+ parent: 2
+ - uid: 2066
+ components:
+ - type: Transform
+ pos: -24.5,-14.5
+ parent: 2
+ - uid: 2067
+ components:
+ - type: Transform
+ pos: -5.5,27.5
+ parent: 2
+ - uid: 2068
+ components:
+ - type: Transform
+ pos: -4.5,27.5
+ parent: 2
+ - uid: 2069
+ components:
+ - type: Transform
+ pos: -3.5,27.5
+ parent: 2
+ - uid: 2070
+ components:
+ - type: Transform
+ pos: -2.5,27.5
+ parent: 2
+ - uid: 2071
+ components:
+ - type: Transform
+ pos: -1.5,27.5
+ parent: 2
+ - uid: 2072
+ components:
+ - type: Transform
+ pos: -0.5,27.5
+ parent: 2
+ - uid: 2073
+ components:
+ - type: Transform
+ pos: 0.5,27.5
+ parent: 2
+ - uid: 2074
+ components:
+ - type: Transform
+ pos: -3.5,26.5
+ parent: 2
+ - uid: 2075
+ components:
+ - type: Transform
+ pos: -2.5,26.5
+ parent: 2
+ - uid: 2076
+ components:
+ - type: Transform
+ pos: -1.5,26.5
+ parent: 2
+ - uid: 2077
+ components:
+ - type: Transform
+ pos: -0.5,26.5
+ parent: 2
+ - uid: 2078
+ components:
+ - type: Transform
+ pos: 2.5,26.5
+ parent: 2
+ - uid: 2079
+ components:
+ - type: Transform
+ pos: 3.5,26.5
+ parent: 2
+ - uid: 2080
+ components:
+ - type: Transform
+ pos: 3.5,27.5
+ parent: 2
+ - uid: 2081
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 2
+ - uid: 2082
+ components:
+ - type: Transform
+ pos: 5.5,27.5
+ parent: 2
+ - uid: 2083
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 2
+ - uid: 2084
+ components:
+ - type: Transform
+ pos: 2.5,27.5
+ parent: 2
+ - uid: 2085
+ components:
+ - type: Transform
+ pos: 6.5,26.5
+ parent: 2
+ - uid: 2086
+ components:
+ - type: Transform
+ pos: 7.5,26.5
+ parent: 2
+ - uid: 2087
+ components:
+ - type: Transform
+ pos: 7.5,25.5
+ parent: 2
+ - uid: 2088
+ components:
+ - type: Transform
+ pos: 8.5,25.5
+ parent: 2
+ - uid: 2089
+ components:
+ - type: Transform
+ pos: 7.5,24.5
+ parent: 2
+ - uid: 2090
+ components:
+ - type: Transform
+ pos: 15.5,19.5
+ parent: 2
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: 15.5,20.5
+ parent: 2
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: 14.5,20.5
+ parent: 2
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: 14.5,21.5
+ parent: 2
+ - uid: 2094
+ components:
+ - type: Transform
+ pos: 14.5,22.5
+ parent: 2
+ - uid: 2095
+ components:
+ - type: Transform
+ pos: 15.5,21.5
+ parent: 2
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: 16.5,11.5
+ parent: 2
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: 17.5,11.5
+ parent: 2
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: 18.5,11.5
+ parent: 2
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: 19.5,11.5
+ parent: 2
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: 19.5,12.5
+ parent: 2
+ - uid: 2101
+ components:
+ - type: Transform
+ pos: 19.5,13.5
+ parent: 2
+ - uid: 2102
+ components:
+ - type: Transform
+ pos: 13.5,12.5
+ parent: 2
+ - uid: 2103
+ components:
+ - type: Transform
+ pos: 14.5,12.5
+ parent: 2
+ - uid: 2104
+ components:
+ - type: Transform
+ pos: -7.5,21.5
+ parent: 2
+ - uid: 2105
+ components:
+ - type: Transform
+ pos: -7.5,20.5
+ parent: 2
+ - uid: 2106
+ components:
+ - type: Transform
+ pos: -7.5,19.5
+ parent: 2
+ - uid: 2107
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 2
+ - uid: 2108
+ components:
+ - type: Transform
+ pos: -7.5,22.5
+ parent: 2
+ - uid: 2109
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 2
+ - uid: 2110
+ components:
+ - type: Transform
+ pos: -8.5,22.5
+ parent: 2
+ - uid: 2111
+ components:
+ - type: Transform
+ pos: 9.5,-3.5
+ parent: 2
+ - uid: 2112
+ components:
+ - type: Transform
+ pos: 9.5,-4.5
+ parent: 2
+ - uid: 2113
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 2
+ - uid: 2114
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 2
+ - uid: 2115
+ components:
+ - type: Transform
+ pos: 8.5,-4.5
+ parent: 2
+ - uid: 2116
+ components:
+ - type: Transform
+ pos: -21.5,-16.5
+ parent: 2
+ - uid: 2117
+ components:
+ - type: Transform
+ pos: -21.5,-17.5
+ parent: 2
+ - uid: 2118
+ components:
+ - type: Transform
+ pos: -21.5,-18.5
+ parent: 2
+ - uid: 2119
+ components:
+ - type: Transform
+ pos: -10.5,-11.5
+ parent: 2
+ - uid: 2120
+ components:
+ - type: Transform
+ pos: -11.5,-11.5
+ parent: 2
+- proto: FloraTreeConifer
+ entities:
+ - uid: 2121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.685955,6.2967916
+ parent: 2
+ - uid: 2122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.451527,12.443444
+ parent: 2
+ - uid: 2123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.28078,-5.407069
+ parent: 2
+ - uid: 2124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.726093,-8.641445
+ parent: 2
+ - uid: 2125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.357777,14.248132
+ parent: 2
+- proto: FloraTreeSnow
+ entities:
+ - uid: 2126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.38908,-5.7608824
+ parent: 2
+ - uid: 2127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.646893,8.874916
+ parent: 2
+ - uid: 2128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.93703,13.592044
+ parent: 2
+ - uid: 2129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.42922,-10.539883
+ parent: 2
+ - uid: 2130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.546406,14.529544
+ parent: 2
+ - uid: 2131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.647968,-7.375819
+ parent: 2
+- proto: FoodBadRecipe
+ entities:
+ - uid: 2132
+ components:
+ - type: Transform
+ pos: -18.450352,16.661095
+ parent: 2
+- proto: FoodBoxDonkpocketBerry
+ entities:
+ - uid: 2133
+ components:
+ - type: Transform
+ pos: -16.427202,15.460358
+ parent: 2
+- proto: FoodBoxDonkpocketSpicy
+ entities:
+ - uid: 2134
+ components:
+ - type: Transform
+ pos: -16.591265,15.882233
+ parent: 2
+- proto: FoodBoxDonut
+ entities:
+ - uid: 2135
+ components:
+ - type: Transform
+ pos: 0.6730821,0.60211015
+ parent: 2
+- proto: FoodBurgerSuper
+ entities:
+ - uid: 2136
+ components:
+ - type: Transform
+ pos: -16.520952,16.350983
+ parent: 2
+- proto: FoodDonutJellySlugcat
+ entities:
+ - uid: 2137
+ components:
+ - type: Transform
+ pos: -15.579121,9.594656
+ parent: 2
+- proto: GasMinerNitrogenStation
+ entities:
+ - uid: 2138
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 2
+- proto: GasMinerOxygenStation
+ entities:
+ - uid: 2139
+ components:
+ - type: Transform
+ pos: 11.5,27.5
+ parent: 2
+- proto: GasPassiveVent
+ entities:
+ - uid: 2140
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 2
+ - uid: 2141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,24.5
+ parent: 2
+ - uid: 2142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,24.5
+ parent: 2
+- proto: GasPipeBend
+ entities:
+ - uid: 2143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 2
+ - uid: 2144
+ components:
+ - type: Transform
+ pos: 11.5,26.5
+ parent: 2
+ - uid: 2145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,26.5
+ parent: 2
+- proto: GasPort
+ entities:
+ - uid: 2146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,-17.5
+ parent: 2
+ - uid: 2147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-17.5
+ parent: 2
+- proto: GasThermoMachineHellfireFreezer
+ entities:
+ - uid: 2148
+ components:
+ - type: Transform
+ pos: -18.5,-16.5
+ parent: 2
+ - type: GasThermoMachine
+ targetTemperature: 23.15
+- proto: GasThermoMachineHellfireHeater
+ entities:
+ - uid: 2149
+ components:
+ - type: Transform
+ pos: -17.5,-16.5
+ parent: 2
+ - type: GasThermoMachine
+ targetTemperature: 1193.15
+- proto: Gateway
+ entities:
+ - uid: 2150
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 2
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 2151
+ components:
+ - type: Transform
+ pos: -11.5,-13.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2152
+ components:
+ - type: Transform
+ pos: -12.5,-13.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2153
+ components:
+ - type: Transform
+ pos: -11.5,-19.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2154
+ components:
+ - type: Transform
+ pos: -12.5,-19.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2155
+ components:
+ - type: Transform
+ pos: -13.5,-13.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2156
+ components:
+ - type: Transform
+ pos: -13.5,-19.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2157
+ components:
+ - type: Transform
+ pos: -13.5,-14.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2158
+ components:
+ - type: Transform
+ pos: -13.5,-18.5
+ parent: 2
+ - type: CMExplosionEffect
+- proto: GravityGenerator
+ entities:
+ - uid: 2159
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 2
+- proto: Grille
+ entities:
+ - uid: 2160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,4.5
+ parent: 2
+ - uid: 2161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,5.5
+ parent: 2
+ - uid: 2162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,3.5
+ parent: 2
+ - uid: 2163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,3.5
+ parent: 2
+ - uid: 2164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,3.5
+ parent: 2
+ - uid: 2165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,3.5
+ parent: 2
+ - uid: 2166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,3.5
+ parent: 2
+ - uid: 2167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,0.5
+ parent: 2
+ - uid: 2168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,0.5
+ parent: 2
+ - uid: 2169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,0.5
+ parent: 2
+ - uid: 2170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,0.5
+ parent: 2
+ - uid: 2171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,0.5
+ parent: 2
+ - uid: 2172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-0.5
+ parent: 2
+ - uid: 2173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-1.5
+ parent: 2
+ - uid: 2174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,5.5
+ parent: 2
+ - uid: 2175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,6.5
+ parent: 2
+ - uid: 2176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,7.5
+ parent: 2
+ - uid: 2177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,7.5
+ parent: 2
+ - uid: 2178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,7.5
+ parent: 2
+ - uid: 2179
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - uid: 2180
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+ - uid: 2181
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 2
+ - uid: 2182
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 2
+ - uid: 2183
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 2
+ - uid: 2184
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 2
+ - uid: 2185
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 2
+ - uid: 2186
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 2
+ - uid: 2187
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 2
+ - uid: 2188
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 2
+ - uid: 2189
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 2
+ - uid: 2190
+ components:
+ - type: Transform
+ pos: 8.5,-6.5
+ parent: 2
+ - uid: 2191
+ components:
+ - type: Transform
+ pos: 9.5,-6.5
+ parent: 2
+ - uid: 2192
+ components:
+ - type: Transform
+ pos: 11.5,-8.5
+ parent: 2
+ - uid: 2193
+ components:
+ - type: Transform
+ pos: 11.5,-9.5
+ parent: 2
+ - uid: 2194
+ components:
+ - type: Transform
+ pos: 11.5,-10.5
+ parent: 2
+ - uid: 2195
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 2
+ - uid: 2196
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 2
+ - uid: 2197
+ components:
+ - type: Transform
+ pos: 11.5,-16.5
+ parent: 2
+ - uid: 2198
+ components:
+ - type: Transform
+ pos: 9.5,-18.5
+ parent: 2
+ - uid: 2199
+ components:
+ - type: Transform
+ pos: 8.5,-18.5
+ parent: 2
+ - uid: 2200
+ components:
+ - type: Transform
+ pos: 7.5,-18.5
+ parent: 2
+ - uid: 2201
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - uid: 2202
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 2203
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 2204
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 2205
+ components:
+ - type: Transform
+ pos: -17.5,-19.5
+ parent: 2
+ - uid: 2206
+ components:
+ - type: Transform
+ pos: -11.5,-12.5
+ parent: 2
+ - uid: 2207
+ components:
+ - type: Transform
+ pos: -12.5,-12.5
+ parent: 2
+ - uid: 2208
+ components:
+ - type: Transform
+ pos: -12.5,-20.5
+ parent: 2
+ - uid: 2209
+ components:
+ - type: Transform
+ pos: -11.5,-20.5
+ parent: 2
+ - uid: 2210
+ components:
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 2
+ - uid: 2211
+ components:
+ - type: Transform
+ pos: -5.5,-17.5
+ parent: 2
+ - uid: 2212
+ components:
+ - type: Transform
+ pos: -5.5,-15.5
+ parent: 2
+ - uid: 2213
+ components:
+ - type: Transform
+ pos: -5.5,-14.5
+ parent: 2
+ - uid: 2214
+ components:
+ - type: Transform
+ pos: -7.5,-13.5
+ parent: 2
+ - uid: 2215
+ components:
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 2
+ - uid: 2216
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 2217
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 2218
+ components:
+ - type: Transform
+ pos: -8.5,-19.5
+ parent: 2
+ - uid: 2219
+ components:
+ - type: Transform
+ pos: -7.5,-19.5
+ parent: 2
+ - uid: 2220
+ components:
+ - type: Transform
+ pos: -6.5,-19.5
+ parent: 2
+ - uid: 2221
+ components:
+ - type: Transform
+ pos: -20.5,0.5
+ parent: 2
+ - uid: 2222
+ components:
+ - type: Transform
+ pos: -19.5,0.5
+ parent: 2
+ - uid: 2223
+ components:
+ - type: Transform
+ pos: -25.5,-5.5
+ parent: 2
+ - uid: 2224
+ components:
+ - type: Transform
+ pos: -25.5,-6.5
+ parent: 2
+ - uid: 2225
+ components:
+ - type: Transform
+ pos: -25.5,-7.5
+ parent: 2
+ - uid: 2226
+ components:
+ - type: Transform
+ pos: -16.5,-7.5
+ parent: 2
+ - uid: 2227
+ components:
+ - type: Transform
+ pos: -16.5,-8.5
+ parent: 2
+ - uid: 2228
+ components:
+ - type: Transform
+ pos: -16.5,-9.5
+ parent: 2
+ - uid: 2229
+ components:
+ - type: Transform
+ pos: -16.5,-19.5
+ parent: 2
+ - uid: 2230
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 2
+ - uid: 2231
+ components:
+ - type: Transform
+ pos: -3.5,25.5
+ parent: 2
+ - uid: 2232
+ components:
+ - type: Transform
+ pos: -1.5,25.5
+ parent: 2
+ - uid: 2233
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 2
+ - uid: 2234
+ components:
+ - type: Transform
+ pos: -9.5,17.5
+ parent: 2
+ - uid: 2235
+ components:
+ - type: Transform
+ pos: -10.5,14.5
+ parent: 2
+ - uid: 2236
+ components:
+ - type: Transform
+ pos: -23.5,4.5
+ parent: 2
+ - uid: 2237
+ components:
+ - type: Transform
+ pos: -20.5,4.5
+ parent: 2
+ - uid: 2238
+ components:
+ - type: Transform
+ pos: -17.5,4.5
+ parent: 2
+ - uid: 2239
+ components:
+ - type: Transform
+ pos: -18.5,17.5
+ parent: 2
+ - uid: 2240
+ components:
+ - type: Transform
+ pos: -17.5,17.5
+ parent: 2
+ - uid: 2241
+ components:
+ - type: Transform
+ pos: -27.5,9.5
+ parent: 2
+ - uid: 2242
+ components:
+ - type: Transform
+ pos: -27.5,8.5
+ parent: 2
+ - uid: 2243
+ components:
+ - type: Transform
+ pos: -27.5,7.5
+ parent: 2
+ - uid: 2244
+ components:
+ - type: Transform
+ pos: -13.5,8.5
+ parent: 2
+ - uid: 2245
+ components:
+ - type: Transform
+ pos: -13.5,10.5
+ parent: 2
+ - uid: 2246
+ components:
+ - type: Transform
+ pos: -13.5,9.5
+ parent: 2
+ - uid: 2247
+ components:
+ - type: Transform
+ pos: -13.5,7.5
+ parent: 2
+ - uid: 2248
+ components:
+ - type: Transform
+ pos: -18.5,10.5
+ parent: 2
+ - uid: 2249
+ components:
+ - type: Transform
+ pos: -21.5,10.5
+ parent: 2
+ - uid: 2250
+ components:
+ - type: Transform
+ pos: -21.5,7.5
+ parent: 2
+ - uid: 2251
+ components:
+ - type: Transform
+ pos: -18.5,7.5
+ parent: 2
+ - uid: 2252
+ components:
+ - type: Transform
+ pos: -6.5,25.5
+ parent: 2
+ - uid: 2253
+ components:
+ - type: Transform
+ pos: 3.5,25.5
+ parent: 2
+ - uid: 2254
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 2255
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 2
+ - uid: 2256
+ components:
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 2
+ - uid: 2257
+ components:
+ - type: Transform
+ pos: 15.5,18.5
+ parent: 2
+ - uid: 2258
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
+ - uid: 2259
+ components:
+ - type: Transform
+ pos: -27.5,0.5
+ parent: 2
+ - uid: 2260
+ components:
+ - type: Transform
+ pos: -26.5,0.5
+ parent: 2
+ - uid: 2261
+ components:
+ - type: Transform
+ pos: -25.5,0.5
+ parent: 2
+ - uid: 2262
+ components:
+ - type: Transform
+ pos: -22.5,-13.5
+ parent: 2
+ - uid: 2263
+ components:
+ - type: Transform
+ pos: -20.5,-13.5
+ parent: 2
+ - uid: 2264
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 2
+ - uid: 2265
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 2
+- proto: Handcuffs
+ entities:
+ - uid: 2266
+ components:
+ - type: Transform
+ pos: -8.478281,15.653774
+ parent: 2
+ - uid: 2267
+ components:
+ - type: Transform
+ pos: -8.4079685,15.442837
+ parent: 2
+ - uid: 2268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.733252,11.645234
+ parent: 2
+ - uid: 2269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.592627,11.645234
+ parent: 2
+- proto: HandLabeler
+ entities:
+ - uid: 2270
+ components:
+ - type: Transform
+ pos: 10.338967,-7.2861457
+ parent: 2
+ - uid: 2271
+ components:
+ - type: Transform
+ pos: 10.510842,-7.5205207
+ parent: 2
+- proto: HappyHonkNukie
+ entities:
+ - uid: 2272
+ components:
+ - type: Transform
+ pos: -22.462767,-2.2459195
+ parent: 2
+ - uid: 2273
+ components:
+ - type: Transform
+ pos: 17.421545,7.8860197
+ parent: 2
+- proto: HarpInstrument
+ entities:
+ - uid: 2274
+ components:
+ - type: Transform
+ pos: -3.5000002,6.5
+ parent: 2
+ - type: Pullable
+ prevFixedRotation: True
+- proto: Katana
+ entities:
+ - uid: 2275
+ components:
+ - type: Transform
+ pos: 0.5366156,16.340948
+ parent: 2
+- proto: KitchenElectricGrill
+ entities:
+ - uid: 2276
+ components:
+ - type: Transform
+ pos: -17.5,16.5
+ parent: 2
+- proto: KitchenKnife
+ entities:
+ - uid: 2277
+ components:
+ - type: Transform
+ pos: -14.518055,-23.473787
+ parent: 2
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 2278
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 2
+- proto: LargeBeaker
+ entities:
+ - uid: 2279
+ components:
+ - type: Transform
+ pos: -21.39071,-6.821676
+ parent: 2
+- proto: LauncherSyringe
+ entities:
+ - uid: 217
+ components:
+ - type: Transform
+ parent: 196
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: LiquidNitrogenCanister
+ entities:
+ - uid: 2280
+ components:
+ - type: Transform
+ pos: -16.5,-16.5
+ parent: 2
+ - uid: 2281
+ components:
+ - type: Transform
+ pos: -26.5,3.5
+ parent: 2
+- proto: LiquidOxygenCanister
+ entities:
+ - uid: 2282
+ components:
+ - type: Transform
+ pos: -15.5,-16.5
+ parent: 2
+ - uid: 2283
+ components:
+ - type: Transform
+ pos: -25.5,3.5
+ parent: 2
+- proto: LockerBooze
+ entities:
+ - uid: 196
+ components:
+ - type: MetaData
+ name: closet
+ - type: Transform
+ pos: 16.5,17.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: Lock
+ locked: False
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 197
+ - 207
+ - 217
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 1797
+ components:
+ - type: MetaData
+ name: closet
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 2
+ - type: Lock
+ locked: False
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1798
+ - 1799
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 2284
+ components:
+ - type: MetaData
+ name: closet
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 2
+ - type: Lock
+ locked: False
+- proto: LockerSteel
+ entities:
+ - uid: 2285
+ components:
+ - type: Transform
+ pos: 17.5,-0.5
+ parent: 2
+ - uid: 2286
+ components:
+ - type: Transform
+ pos: 17.5,4.5
+ parent: 2
+- proto: LockerSyndicatePersonal
+ entities:
+ - uid: 2287
+ components:
+ - type: Transform
+ pos: -12.5,16.5
+ parent: 2
+ - type: Lock
+ locked: False
+- proto: LockerSyndicatePersonalFilled
+ entities:
+ - uid: 2288
+ components:
+ - type: Transform
+ pos: -26.5,8.5
+ parent: 2
+ - uid: 2289
+ components:
+ - type: Transform
+ pos: -24.5,9.5
+ parent: 2
+ - uid: 2290
+ components:
+ - type: Transform
+ pos: -26.5,7.5
+ parent: 2
+ - uid: 2291
+ components:
+ - type: Transform
+ pos: -26.5,9.5
+ parent: 2
+ - uid: 2292
+ components:
+ - type: Transform
+ pos: -24.5,8.5
+ parent: 2
+ - uid: 2293
+ components:
+ - type: Transform
+ pos: -24.5,7.5
+ parent: 2
+- proto: LockerWeldingSuppliesFilled
+ entities:
+ - uid: 2294
+ components:
+ - type: Transform
+ pos: -10.5,-13.5
+ parent: 2
+ - type: Lock
+ locked: False
+- proto: MachineCentrifuge
+ entities:
+ - uid: 2295
+ components:
+ - type: Transform
+ pos: 8.5,-15.5
+ parent: 2
+- proto: MachineElectrolysisUnit
+ entities:
+ - uid: 2296
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+- proto: MailSpamLetter
+ entities:
+ - uid: 2297
+ components:
+ - type: Transform
+ pos: -14.72777,8.641857
+ parent: 2
+- proto: Mannequin
+ entities:
+ - uid: 1769
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ jumpsuit: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1775
+ outerClothing: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1774
+ neck: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ mask: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1773
+ eyes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1771
+ head: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1772
+ suitstorage: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ back: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1770
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: 11.5,18.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ jumpsuit: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1782
+ outerClothing: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1781
+ neck: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1780
+ mask: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ eyes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1778
+ head: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1779
+ suitstorage: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ back: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1777
+ - uid: 1800
+ components:
+ - type: Transform
+ pos: 7.5,18.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ jumpsuit: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1802
+ outerClothing: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ neck: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ mask: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ eyes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ head: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 1801
+ suitstorage: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ back: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+- proto: Mattress
+ entities:
+ - uid: 2298
+ components:
+ - type: Transform
+ pos: -11.5,20.5
+ parent: 2
+- proto: MedicalBed
+ entities:
+ - uid: 2299
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 2
+- proto: MedkitAdvancedFilled
+ entities:
+ - uid: 2300
+ components:
+ - type: Transform
+ pos: 8.434806,-12.26442
+ parent: 2
+- proto: MedkitBruteFilled
+ entities:
+ - uid: 2301
+ components:
+ - type: Transform
+ pos: 8.959348,-12.265577
+ parent: 2
+ - uid: 2302
+ components:
+ - type: Transform
+ pos: 3.4615114,-13.346811
+ parent: 2
+- proto: MedkitBurnFilled
+ entities:
+ - uid: 2303
+ components:
+ - type: Transform
+ pos: 9.4917555,-12.265577
+ parent: 2
+- proto: MedkitFilled
+ entities:
+ - uid: 2304
+ components:
+ - type: Transform
+ pos: 10.552851,-11.173365
+ parent: 2
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 2305
+ components:
+ - type: Transform
+ pos: 10.021189,-12.265577
+ parent: 2
+- proto: MedkitRadiationFilled
+ entities:
+ - uid: 2306
+ components:
+ - type: Transform
+ pos: 10.5535965,-12.293355
+ parent: 2
+- proto: MedkitToxinFilled
+ entities:
+ - uid: 2307
+ components:
+ - type: Transform
+ pos: 10.552851,-11.738179
+ parent: 2
+- proto: MetalDoor
+ entities:
+ - uid: 2308
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+ - type: Door
+ secondsUntilStateChange: -17313.82
+ state: Opening
+ - uid: 2309
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - type: Door
+ secondsUntilStateChange: -17314.688
+ state: Opening
+- proto: MinimoogInstrument
+ entities:
+ - uid: 2310
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 2
+- proto: MiningDrillDiamond
+ entities:
+ - uid: 2311
+ components:
+ - type: Transform
+ pos: 14.426799,-9.744018
+ parent: 2
+- proto: MiniSyringe
+ entities:
+ - uid: 198
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 199
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 200
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 201
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 202
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 203
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 204
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 205
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 206
+ components:
+ - type: Transform
+ parent: 197
+ - type: Physics
+ canCollide: False
+ - uid: 208
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+ - uid: 209
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+ - uid: 210
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+ - uid: 211
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+ - uid: 212
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+ - uid: 213
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+ - uid: 214
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+ - uid: 215
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+ - uid: 216
+ components:
+ - type: Transform
+ parent: 207
+ - type: Physics
+ canCollide: False
+- proto: Mirror
+ entities:
+ - uid: 2312
+ components:
+ - type: Transform
+ pos: -21.5,-13.5
+ parent: 2
+- proto: ModularGrenade
+ entities:
+ - uid: 2313
+ components:
+ - type: Transform
+ pos: 4.3296976,-17.326916
+ parent: 2
+ - uid: 2314
+ components:
+ - type: Transform
+ pos: 4.3296976,-17.326916
+ parent: 2
+ - uid: 2315
+ components:
+ - type: Transform
+ pos: 4.4703226,-17.451916
+ parent: 2
+ - uid: 2316
+ components:
+ - type: Transform
+ pos: 4.4703226,-17.451916
+ parent: 2
+- proto: MopBucketFull
+ entities:
+ - uid: 2317
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 2
+- proto: MopItem
+ entities:
+ - uid: 2318
+ components:
+ - type: Transform
+ pos: -22.597929,-12.518184
+ parent: 2
+- proto: Multitool
+ entities:
+ - uid: 2319
+ components:
+ - type: Transform
+ pos: 7.991516,-13.407329
+ parent: 2
+ - uid: 2320
+ components:
+ - type: Transform
+ pos: 8.085266,-13.376079
+ parent: 2
+ - uid: 2321
+ components:
+ - type: Transform
+ pos: -25.258036,11.68095
+ parent: 2
+- proto: NuclearBombKeg
+ entities:
+ - uid: 2322
+ components:
+ - type: Transform
+ pos: -22.5,-7.5
+ parent: 2
+- proto: NukeDiskFake
+ entities:
+ - uid: 2323
+ components:
+ - type: Transform
+ pos: -23.025232,-2.4473848
+ parent: 2
+- proto: OperatingTable
+ entities:
+ - uid: 2324
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+- proto: Paper
+ entities:
+ - uid: 2325
+ components:
+ - type: Transform
+ pos: 1.6874077,3.7056565
+ parent: 2
+ - uid: 2326
+ components:
+ - type: Transform
+ pos: 1.8436577,3.5806565
+ parent: 2
+- proto: PartRodMetal
+ entities:
+ - uid: 2327
+ components:
+ - type: Transform
+ pos: -6.4644814,-17.924072
+ parent: 2
+ - uid: 2328
+ components:
+ - type: Transform
+ pos: -6.9332314,-18.439697
+ parent: 2
+- proto: PhoneInstrumentSyndicate
+ entities:
+ - uid: 2329
+ components:
+ - type: Transform
+ pos: 0.52003896,3.6520262
+ parent: 2
+- proto: PianoInstrument
+ entities:
+ - uid: 2330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,6.5
+ parent: 2
+- proto: PirateFlag
+ entities:
+ - uid: 2331
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 2
+ - uid: 2332
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 2
+- proto: PlasmaCanister
+ entities:
+ - uid: 2333
+ components:
+ - type: Transform
+ pos: -17.5,-18.5
+ parent: 2
+- proto: PlasmaWindoorSecureCentralCommandLocked
+ entities:
+ - uid: 2334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,2.5
+ parent: 2
+- proto: PlasmaWindoorSecureNukeopLocked
+ entities:
+ - uid: 2335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,2.5
+ parent: 2
+- proto: PlasticFlapsClear
+ entities:
+ - uid: 2336
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 2
+- proto: PlastitaniumWindow
+ entities:
+ - uid: 2337
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 2
+ - uid: 2338
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 2
+ - uid: 2339
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 2
+ - uid: 2340
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 2
+ - uid: 2341
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 2
+ - uid: 2342
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 2
+ - uid: 2343
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 2
+ - uid: 2344
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 2
+ - uid: 2345
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+ - uid: 2346
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 2
+ - uid: 2347
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 2
+ - uid: 2348
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 2
+ - uid: 2349
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 2
+ - uid: 2350
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 2
+ - uid: 2351
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 2
+ - uid: 2352
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 2
+ - uid: 2353
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 2
+ - uid: 2354
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 2
+- proto: PlushieLizard
+ entities:
+ - uid: 1858
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1859
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1860
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1861
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1862
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1863
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1864
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1865
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1866
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1867
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1868
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1869
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1870
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+ - uid: 1871
+ components:
+ - type: Transform
+ parent: 1857
+ - type: Physics
+ canCollide: False
+- proto: PlushieMagicarp
+ entities:
+ - uid: 2355
+ components:
+ - type: Transform
+ pos: 2.5461602,28.697094
+ parent: 2
+- proto: PlushieNar
+ entities:
+ - uid: 2356
+ components:
+ - type: Transform
+ pos: -13.51912,21.5065
+ parent: 2
+- proto: PlushieNuke
+ entities:
+ - uid: 2357
+ components:
+ - type: Transform
+ pos: 2.0012028,-17.304544
+ parent: 2
+ - uid: 2358
+ components:
+ - type: Transform
+ pos: -23.42875,-2.2443962
+ parent: 2
+ - uid: 2359
+ components:
+ - type: Transform
+ pos: 17.765295,7.5891447
+ parent: 2
+ - uid: 2360
+ components:
+ - type: Transform
+ pos: -28.41602,-2.172973
+ parent: 2
+- proto: PlushieRouny
+ entities:
+ - uid: 2361
+ components:
+ - type: Transform
+ pos: 19.676235,15.714547
+ parent: 2
+ - uid: 2362
+ components:
+ - type: Transform
+ pos: 19.238735,15.277047
+ parent: 2
+- proto: PlushieSeven
+ entities:
+ - uid: 2363
+ components:
+ - type: Transform
+ pos: 3.0012028,-17.13267
+ parent: 2
+- proto: PlushieSharkGrey
+ entities:
+ - uid: 2364
+ components:
+ - type: Transform
+ pos: 10.470064,-8.555782
+ parent: 2
+- proto: PlushieSmile
+ entities:
+ - uid: 2365
+ components:
+ - type: Transform
+ pos: -16.32188,19.846106
+ parent: 2
+- proto: PortableScrubber
+ entities:
+ - uid: 2366
+ components:
+ - type: Transform
+ pos: -18.5,-18.5
+ parent: 2
+- proto: PosterContrabandC20r
+ entities:
+ - uid: 2367
+ components:
+ - type: Transform
+ pos: -6.5,15.5
+ parent: 2
+- proto: PosterContrabandCybersun600
+ entities:
+ - uid: 2368
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 2
+- proto: PosterContrabandEnergySwords
+ entities:
+ - uid: 2369
+ components:
+ - type: Transform
+ pos: -19.5,-16.5
+ parent: 2
+- proto: PosterContrabandEnlistGorlex
+ entities:
+ - uid: 2370
+ components:
+ - type: Transform
+ pos: -26.5,4.5
+ parent: 2
+- proto: PosterContrabandFunPolice
+ entities:
+ - uid: 2371
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 2
+- proto: PosterContrabandMoth
+ entities:
+ - uid: 2372
+ components:
+ - type: Transform
+ pos: -25.5,-1.5
+ parent: 2
+- proto: PosterContrabandRevolt
+ entities:
+ - uid: 2373
+ components:
+ - type: Transform
+ pos: -29.5,-0.5
+ parent: 2
+- proto: PosterContrabandRouny
+ entities:
+ - uid: 2374
+ components:
+ - type: Transform
+ pos: -17.5,-13.5
+ parent: 2
+- proto: PosterContrabandSyndicatePistol
+ entities:
+ - uid: 2375
+ components:
+ - type: Transform
+ pos: 11.5,-17.5
+ parent: 2
+- proto: PosterContrabandSyndicateRecruitment
+ entities:
+ - uid: 2376
+ components:
+ - type: Transform
+ pos: -27.5,4.5
+ parent: 2
+- proto: PosterLegitCleanliness
+ entities:
+ - uid: 2377
+ components:
+ - type: Transform
+ pos: -23.5,-12.5
+ parent: 2
+- proto: PottedPlant18
+ entities:
+ - uid: 2378
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 2379
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 2
+- proto: PottedPlant21
+ entities:
+ - uid: 2380
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 2
+ - uid: 2381
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 2
+- proto: PottedPlant22
+ entities:
+ - uid: 2382
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 2
+ - uid: 2383
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 2
+ - uid: 2384
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 2385
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 2
+- proto: PottedPlantRandom
+ entities:
+ - uid: 2386
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 2
+ - uid: 2387
+ components:
+ - type: Transform
+ pos: -23.5,-0.5
+ parent: 2
+ - uid: 2388
+ components:
+ - type: Transform
+ pos: -21.5,-0.5
+ parent: 2
+- proto: PowerCellSyndicate
+ entities:
+ - uid: 2389
+ components:
+ - type: Transform
+ pos: -20.54275,10.640736
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2390
+ components:
+ - type: Transform
+ pos: 3.529194,-17.44033
+ parent: 2
+ - type: CMExplosionEffect
+- proto: PoweredLEDLightPostSmall
+ entities:
+ - uid: 2391
+ components:
+ - type: Transform
+ pos: -61.5,12.5
+ parent: 2
+ - uid: 2392
+ components:
+ - type: Transform
+ pos: -61.5,-8.5
+ parent: 2
+ - uid: 2393
+ components:
+ - type: Transform
+ pos: -28.5,9.5
+ parent: 2
+ - uid: 2394
+ components:
+ - type: Transform
+ pos: -16.5,18.5
+ parent: 2
+ - uid: 2395
+ components:
+ - type: Transform
+ pos: 12.5,-14.5
+ parent: 2
+ - uid: 2396
+ components:
+ - type: Transform
+ pos: -26.5,-7.5
+ parent: 2
+- proto: Poweredlight
+ entities:
+ - uid: 2397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-17.5
+ parent: 2
+ - uid: 2398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,15.5
+ parent: 2
+ - uid: 2399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,15.5
+ parent: 2
+ - uid: 2400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,6.5
+ parent: 2
+ - uid: 2401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,5.5
+ parent: 2
+ - uid: 2402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,6.5
+ parent: 2
+ - uid: 2403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,10.5
+ parent: 2
+ - uid: 2404
+ components:
+ - type: Transform
+ pos: -24.5,11.5
+ parent: 2
+ - uid: 2405
+ components:
+ - type: Transform
+ pos: -20.5,12.5
+ parent: 2
+ - uid: 2406
+ components:
+ - type: Transform
+ pos: -23.5,12.5
+ parent: 2
+ - uid: 2407
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,15.5
+ parent: 2
+ - uid: 2408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,15.5
+ parent: 2
+ - uid: 2409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-10.5
+ parent: 2
+ - uid: 2410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-11.5
+ parent: 2
+ - uid: 2411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-7.5
+ parent: 2
+ - uid: 2412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 2
+ - uid: 2413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-17.5
+ parent: 2
+ - uid: 2414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-17.5
+ parent: 2
+ - uid: 2415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-13.5
+ parent: 2
+ - uid: 2416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-17.5
+ parent: 2
+ - uid: 2417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-16.5
+ parent: 2
+ - uid: 2418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-19.5
+ parent: 2
+ - uid: 2419
+ components:
+ - type: Transform
+ pos: -13.5,-13.5
+ parent: 2
+ - uid: 2420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-19.5
+ parent: 2
+ - uid: 2421
+ components:
+ - type: Transform
+ pos: -10.5,-13.5
+ parent: 2
+ - uid: 2422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-19.5
+ parent: 2
+ - uid: 2423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-1.5
+ parent: 2
+ - uid: 2424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-3.5
+ parent: 2
+ - uid: 2425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-4.5
+ parent: 2
+ - uid: 2426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-9.5
+ parent: 2
+ - uid: 2427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-8.5
+ parent: 2
+ - uid: 2428
+ components:
+ - type: Transform
+ pos: -18.5,-0.5
+ parent: 2
+ - uid: 2429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-6.5
+ parent: 2
+ - uid: 2430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 2
+ - uid: 2431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 2432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,4.5
+ parent: 2
+ - uid: 2433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-0.5
+ parent: 2
+ - uid: 2434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-0.5
+ parent: 2
+ - uid: 2435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,4.5
+ parent: 2
+ - uid: 2436
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 2
+ - uid: 2437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,7.5
+ parent: 2
+- proto: PoweredlightLED
+ entities:
+ - uid: 2438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-10.5
+ parent: 2
+ - uid: 2439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,4.5
+ parent: 2
+ - uid: 2440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-0.5
+ parent: 2
+ - uid: 2441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,10.5
+ parent: 2
+ - uid: 2442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-4.5
+ parent: 2
+ - uid: 2443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,-10.5
+ parent: 2
+ - uid: 2444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,-10.5
+ parent: 2
+ - uid: 2445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-10.5
+ parent: 2
+ - uid: 2446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-10.5
+ parent: 2
+ - uid: 2447
+ components:
+ - type: Transform
+ pos: -41.5,14.5
+ parent: 2
+ - uid: 2448
+ components:
+ - type: Transform
+ pos: -47.5,14.5
+ parent: 2
+ - uid: 2449
+ components:
+ - type: Transform
+ pos: -53.5,14.5
+ parent: 2
+ - uid: 2450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,13.5
+ parent: 2
+ - uid: 2451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-9.5
+ parent: 2
+- proto: PoweredlightOrange
+ entities:
+ - uid: 2452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-11.5
+ parent: 2
+ - uid: 2453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,-11.5
+ parent: 2
+ - uid: 2454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,5.5
+ parent: 2
+ - uid: 2455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,12.5
+ parent: 2
+ - uid: 2456
+ components:
+ - type: Transform
+ pos: -7.5,13.5
+ parent: 2
+ - uid: 2457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,17.5
+ parent: 2
+ - uid: 2458
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 2
+ - uid: 2459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,24.5
+ parent: 2
+ - uid: 2460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,24.5
+ parent: 2
+ - uid: 2461
+ components:
+ - type: Transform
+ pos: -2.5,24.5
+ parent: 2
+ - uid: 2462
+ components:
+ - type: Transform
+ pos: -0.5,24.5
+ parent: 2
+ - uid: 2463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,18.5
+ parent: 2
+ - uid: 2464
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,1.5
+ parent: 2
+ - uid: 2465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,15.5
+ parent: 2
+ - uid: 2466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,15.5
+ parent: 2
+ - uid: 2467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,0.5
+ parent: 2
+ - uid: 2468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,1.5
+ parent: 2
+ - uid: 2469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-3.5
+ parent: 2
+ - uid: 2470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-6.5
+ parent: 2
+ - uid: 2471
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - uid: 2472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 2
+ - uid: 2473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 2
+- proto: PoweredlightRed
+ entities:
+ - uid: 2474
+ components:
+ - type: Transform
+ pos: 10.5,5.5
+ parent: 2
+ - uid: 2475
+ components:
+ - type: Transform
+ pos: 13.5,5.5
+ parent: 2
+ - uid: 2476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-1.5
+ parent: 2
+ - uid: 2477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-1.5
+ parent: 2
+- proto: PoweredSmallLight
+ entities:
+ - uid: 2478
+ components:
+ - type: Transform
+ pos: -21.5,-11.5
+ parent: 2
+- proto: PoweredWarmSmallLight
+ entities:
+ - uid: 2479
+ components:
+ - type: Transform
+ pos: -10.5,20.5
+ parent: 2
+ - uid: 2480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-1.5
+ parent: 2
+ - uid: 2481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-1.5
+ parent: 2
+ - uid: 2482
+ components:
+ - type: Transform
+ pos: -28.5,3.5
+ parent: 2
+ - uid: 2483
+ components:
+ - type: Transform
+ pos: -25.5,3.5
+ parent: 2
+ - uid: 2484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,5.5
+ parent: 2
+ - uid: 2485
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 2
+ - uid: 2486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,3.5
+ parent: 2
+ - uid: 2487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,0.5
+ parent: 2
+ - uid: 2488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,9.5
+ parent: 2
+ - uid: 2489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,7.5
+ parent: 2
+ - uid: 2490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,20.5
+ parent: 2
+ - uid: 2491
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 2
+ - uid: 2492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,11.5
+ parent: 2
+ - uid: 2493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,6.5
+ parent: 2
+ - uid: 2494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-11.5
+ parent: 2
+ - uid: 2495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,20.5
+ parent: 2
+ - uid: 2496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,20.5
+ parent: 2
+ - uid: 2497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,20.5
+ parent: 2
+ - uid: 2498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,16.5
+ parent: 2
+ - uid: 2499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,16.5
+ parent: 2
+- proto: PressureControlledValve
+ entities:
+ - uid: 2500
+ components:
+ - type: Transform
+ pos: 11.5,25.5
+ parent: 2
+- proto: PrinterDoc
+ entities:
+ - uid: 2501
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+- proto: Rack
+ entities:
+ - uid: 2502
+ components:
+ - type: Transform
+ pos: 17.5,-1.5
+ parent: 2
+ - uid: 2503
+ components:
+ - type: Transform
+ pos: 17.5,5.5
+ parent: 2
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 2505
+ components:
+ - type: Transform
+ pos: -26.5,10.5
+ parent: 2
+ - uid: 2506
+ components:
+ - type: Transform
+ pos: -28.5,-2.5
+ parent: 2
+- proto: Railing
+ entities:
+ - uid: 2507
+ components:
+ - type: Transform
+ pos: -6.5,3.5
+ parent: 2
+ - uid: 2508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,0.5
+ parent: 2
+ - uid: 2509
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 2
+ - uid: 2510
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 2
+ - uid: 2511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,11.5
+ parent: 2
+ - uid: 2512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,11.5
+ parent: 2
+ - uid: 2513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,11.5
+ parent: 2
+ - uid: 2514
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-10.5
+ parent: 2
+ - uid: 2515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-10.5
+ parent: 2
+ - uid: 2516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-10.5
+ parent: 2
+ - uid: 2517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-10.5
+ parent: 2
+ - uid: 2518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 2519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-10.5
+ parent: 2
+ - uid: 2520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-10.5
+ parent: 2
+ - uid: 2521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-10.5
+ parent: 2
+ - uid: 2522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-10.5
+ parent: 2
+ - uid: 2523
+ components:
+ - type: Transform
+ pos: -7.5,-6.5
+ parent: 2
+ - uid: 2524
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 2
+ - uid: 2525
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 2526
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 2
+ - uid: 2527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 2
+ - uid: 2528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 2529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-2.5
+ parent: 2
+ - uid: 2530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-1.5
+ parent: 2
+ - uid: 2531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-2.5
+ parent: 2
+ - uid: 2532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-3.5
+ parent: 2
+ - uid: 2533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-4.5
+ parent: 2
+ - uid: 2534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-5.5
+ parent: 2
+ - uid: 2535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,5.5
+ parent: 2
+ - uid: 2536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,6.5
+ parent: 2
+ - uid: 2537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,9.5
+ parent: 2
+ - uid: 2538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,8.5
+ parent: 2
+ - uid: 2539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,7.5
+ parent: 2
+ - uid: 2540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,5.5
+ parent: 2
+ - uid: 2541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,6.5
+ parent: 2
+ - uid: 2542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,7.5
+ parent: 2
+ - uid: 2543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,8.5
+ parent: 2
+ - uid: 2544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,9.5
+ parent: 2
+ - uid: 2545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,10.5
+ parent: 2
+ - uid: 2546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,11.5
+ parent: 2
+ - uid: 2547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,12.5
+ parent: 2
+ - uid: 2548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-11.5
+ parent: 2
+ - uid: 2549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-11.5
+ parent: 2
+ - uid: 2550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-6.5
+ parent: 2
+ - uid: 2551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-6.5
+ parent: 2
+ - uid: 2552
+ components:
+ - type: Transform
+ pos: -13.5,-3.5
+ parent: 2
+ - uid: 2553
+ components:
+ - type: Transform
+ pos: -14.5,-3.5
+ parent: 2
+ - uid: 2554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,0.5
+ parent: 2
+ - uid: 2555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,0.5
+ parent: 2
+ - uid: 2556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,10.5
+ parent: 2
+ - uid: 2557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,10.5
+ parent: 2
+ - uid: 2558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,10.5
+ parent: 2
+ - uid: 2559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,10.5
+ parent: 2
+ - uid: 2560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 2561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,10.5
+ parent: 2
+ - uid: 2562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,10.5
+ parent: 2
+ - uid: 2563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,10.5
+ parent: 2
+ - uid: 2564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,10.5
+ parent: 2
+ - uid: 2565
+ components:
+ - type: Transform
+ pos: 4.5,14.5
+ parent: 2
+ - uid: 2566
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,13.5
+ parent: 2
+ - uid: 2567
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 2
+ - uid: 2568
+ components:
+ - type: Transform
+ pos: -2.5,14.5
+ parent: 2
+ - uid: 2569
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 2
+ - uid: 2570
+ components:
+ - type: Transform
+ pos: -3.5,14.5
+ parent: 2
+ - uid: 2571
+ components:
+ - type: Transform
+ pos: -15.5,3.5
+ parent: 2
+ - uid: 2572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,8.5
+ parent: 2
+ - uid: 2573
+ components:
+ - type: Transform
+ pos: -14.5,3.5
+ parent: 2
+ - uid: 2574
+ components:
+ - type: Transform
+ pos: -16.5,3.5
+ parent: 2
+ - uid: 2575
+ components:
+ - type: Transform
+ pos: -36.5,13.5
+ parent: 2
+ - uid: 2576
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-9.5
+ parent: 2
+ - uid: 2577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,-8.5
+ parent: 2
+ - uid: 2578
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,-8.5
+ parent: 2
+ - uid: 2579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,-8.5
+ parent: 2
+ - uid: 2580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,-8.5
+ parent: 2
+ - uid: 2581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-8.5
+ parent: 2
+ - uid: 2582
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-8.5
+ parent: 2
+ - uid: 2583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-8.5
+ parent: 2
+ - uid: 2584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-8.5
+ parent: 2
+ - uid: 2585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,-8.5
+ parent: 2
+ - uid: 2586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-8.5
+ parent: 2
+ - uid: 2587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,-8.5
+ parent: 2
+ - uid: 2588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,-8.5
+ parent: 2
+ - uid: 2589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-8.5
+ parent: 2
+ - uid: 2590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-8.5
+ parent: 2
+ - uid: 2591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -56.5,-8.5
+ parent: 2
+ - uid: 2592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-8.5
+ parent: 2
+ - uid: 2593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-8.5
+ parent: 2
+ - uid: 2594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-8.5
+ parent: 2
+ - uid: 2595
+ components:
+ - type: Transform
+ pos: -59.5,-10.5
+ parent: 2
+ - uid: 2596
+ components:
+ - type: Transform
+ pos: -38.5,12.5
+ parent: 2
+ - uid: 2597
+ components:
+ - type: Transform
+ pos: -40.5,12.5
+ parent: 2
+ - uid: 2598
+ components:
+ - type: Transform
+ pos: -41.5,12.5
+ parent: 2
+ - uid: 2599
+ components:
+ - type: Transform
+ pos: -42.5,12.5
+ parent: 2
+ - uid: 2600
+ components:
+ - type: Transform
+ pos: -44.5,12.5
+ parent: 2
+ - uid: 2601
+ components:
+ - type: Transform
+ pos: -45.5,12.5
+ parent: 2
+ - uid: 2602
+ components:
+ - type: Transform
+ pos: -46.5,12.5
+ parent: 2
+ - uid: 2603
+ components:
+ - type: Transform
+ pos: -48.5,12.5
+ parent: 2
+ - uid: 2604
+ components:
+ - type: Transform
+ pos: -49.5,12.5
+ parent: 2
+ - uid: 2605
+ components:
+ - type: Transform
+ pos: -50.5,12.5
+ parent: 2
+ - uid: 2606
+ components:
+ - type: Transform
+ pos: -52.5,12.5
+ parent: 2
+ - uid: 2607
+ components:
+ - type: Transform
+ pos: -53.5,12.5
+ parent: 2
+ - uid: 2608
+ components:
+ - type: Transform
+ pos: -54.5,12.5
+ parent: 2
+ - uid: 2609
+ components:
+ - type: Transform
+ pos: -56.5,12.5
+ parent: 2
+ - uid: 2610
+ components:
+ - type: Transform
+ pos: -57.5,12.5
+ parent: 2
+ - uid: 2611
+ components:
+ - type: Transform
+ pos: -58.5,12.5
+ parent: 2
+ - uid: 2612
+ components:
+ - type: Transform
+ pos: -60.5,12.5
+ parent: 2
+ - uid: 2613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,14.5
+ parent: 2
+ - uid: 2614
+ components:
+ - type: Transform
+ pos: -4.5,-15.5
+ parent: 2
+ - uid: 2615
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 2
+ - uid: 2616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-17.5
+ parent: 2
+ - uid: 2617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
+ parent: 2
+ - uid: 2618
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 2
+ - uid: 2619
+ components:
+ - type: Transform
+ pos: -1.5,21.5
+ parent: 2
+ - uid: 2620
+ components:
+ - type: Transform
+ pos: 1.5,23.5
+ parent: 2
+- proto: RailingCorner
+ entities:
+ - uid: 2621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-0.5
+ parent: 2
+ - uid: 2622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,0.5
+ parent: 2
+ - uid: 2623
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 2
+ - uid: 2624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 2
+ - uid: 2625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,11.5
+ parent: 2
+ - uid: 2626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,11.5
+ parent: 2
+ - uid: 2627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-6.5
+ parent: 2
+ - uid: 2628
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+ - uid: 2629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-6.5
+ parent: 2
+ - uid: 2630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,4.5
+ parent: 2
+ - uid: 2631
+ components:
+ - type: Transform
+ pos: -12.5,-3.5
+ parent: 2
+ - uid: 2632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,3.5
+ parent: 2
+ - uid: 2633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-10.5
+ parent: 2
+ - uid: 2634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-10.5
+ parent: 2
+ - uid: 2635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-6.5
+ parent: 2
+ - uid: 2636
+ components:
+ - type: Transform
+ pos: -12.5,4.5
+ parent: 2
+ - uid: 2637
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 2
+ - uid: 2638
+ components:
+ - type: Transform
+ pos: -13.5,3.5
+ parent: 2
+ - uid: 2639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,14.5
+ parent: 2
+ - uid: 2640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,15.5
+ parent: 2
+ - uid: 2641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,0.5
+ parent: 2
+ - uid: 2642
+ components:
+ - type: Transform
+ pos: -5.5,15.5
+ parent: 2
+ - uid: 2643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,3.5
+ parent: 2
+ - uid: 2644
+ components:
+ - type: Transform
+ pos: -23.5,3.5
+ parent: 2
+ - uid: 2645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,7.5
+ parent: 2
+ - uid: 2646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,9.5
+ parent: 2
+ - uid: 2647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,5.5
+ parent: 2
+ - uid: 2648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,11.5
+ parent: 2
+ - uid: 2649
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-8.5
+ parent: 2
+ - uid: 2650
+ components:
+ - type: Transform
+ pos: -37.5,12.5
+ parent: 2
+ - uid: 2651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,-8.5
+ parent: 2
+ - uid: 2652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-9.5
+ parent: 2
+ - uid: 2653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -60.5,-10.5
+ parent: 2
+ - uid: 2654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.5,12.5
+ parent: 2
+ - uid: 2655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,13.5
+ parent: 2
+ - uid: 2656
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,14.5
+ parent: 2
+- proto: RailingCornerSmall
+ entities:
+ - uid: 2657
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-6.5
+ parent: 2
+ - uid: 2658
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-6.5
+ parent: 2
+ - uid: 2659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-10.5
+ parent: 2
+ - uid: 2660
+ components:
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 2
+ - uid: 2661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,10.5
+ parent: 2
+ - uid: 2662
+ components:
+ - type: Transform
+ pos: -7.5,-0.5
+ parent: 2
+ - uid: 2663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,14.5
+ parent: 2
+ - uid: 2664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,14.5
+ parent: 2
+ - uid: 2665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,16.5
+ parent: 2
+ - uid: 2666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,16.5
+ parent: 2
+ - uid: 2667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,4.5
+ parent: 2
+ - uid: 2668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,4.5
+ parent: 2
+ - uid: 2669
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,12.5
+ parent: 2
+ - uid: 2670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,13.5
+ parent: 2
+ - uid: 2671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-9.5
+ parent: 2
+ - uid: 2672
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-10.5
+ parent: 2
+ - uid: 2673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-9.5
+ parent: 2
+ - uid: 2674
+ components:
+ - type: Transform
+ pos: -58.5,14.5
+ parent: 2
+ - uid: 2675
+ components:
+ - type: Transform
+ pos: -60.5,13.5
+ parent: 2
+ - uid: 2676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,19.5
+ parent: 2
+ - uid: 2677
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,21.5
+ parent: 2
+ - uid: 2678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,23.5
+ parent: 2
+ - uid: 2679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,23.5
+ parent: 2
+ - uid: 2680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,21.5
+ parent: 2
+ - uid: 2681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,19.5
+ parent: 2
+- proto: RailingRound
+ entities:
+ - uid: 2682
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - uid: 2683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,0.5
+ parent: 2
+- proto: RandomGreyStalagmite
+ entities:
+ - uid: 2684
+ components:
+ - type: Transform
+ pos: -8.5,23.5
+ parent: 2
+ - uid: 2685
+ components:
+ - type: Transform
+ pos: -11.5,22.5
+ parent: 2
+ - uid: 2686
+ components:
+ - type: Transform
+ pos: -7.5,4.5
+ parent: 2
+ - uid: 2687
+ components:
+ - type: Transform
+ pos: -4.5,9.5
+ parent: 2
+ - uid: 2688
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 2
+ - uid: 2689
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 2
+ - uid: 2690
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+ - uid: 2691
+ components:
+ - type: Transform
+ pos: -8.5,-3.5
+ parent: 2
+ - uid: 2692
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - uid: 2693
+ components:
+ - type: Transform
+ pos: -12.5,-11.5
+ parent: 2
+ - uid: 2694
+ components:
+ - type: Transform
+ pos: -13.5,-6.5
+ parent: 2
+ - uid: 2695
+ components:
+ - type: Transform
+ pos: -13.5,-3.5
+ parent: 2
+ - uid: 2696
+ components:
+ - type: Transform
+ pos: -15.5,0.5
+ parent: 2
+ - uid: 2697
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 2
+ - uid: 2698
+ components:
+ - type: Transform
+ pos: -5.5,-10.5
+ parent: 2
+ - uid: 2699
+ components:
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 2
+ - uid: 2700
+ components:
+ - type: Transform
+ pos: 14.5,-5.5
+ parent: 2
+ - uid: 2701
+ components:
+ - type: Transform
+ pos: 13.5,-8.5
+ parent: 2
+ - uid: 2702
+ components:
+ - type: Transform
+ pos: 6.5,-21.5
+ parent: 2
+ - uid: 2703
+ components:
+ - type: Transform
+ pos: -8.5,-20.5
+ parent: 2
+ - uid: 2704
+ components:
+ - type: Transform
+ pos: -15.5,-22.5
+ parent: 2
+ - uid: 2705
+ components:
+ - type: Transform
+ pos: -21.5,-14.5
+ parent: 2
+ - uid: 2706
+ components:
+ - type: Transform
+ pos: -13.5,4.5
+ parent: 2
+ - uid: 2707
+ components:
+ - type: Transform
+ pos: -23.5,3.5
+ parent: 2
+ - uid: 2708
+ components:
+ - type: Transform
+ pos: -6.5,26.5
+ parent: 2
+ - uid: 2709
+ components:
+ - type: Transform
+ pos: 0.5,26.5
+ parent: 2
+ - uid: 2710
+ components:
+ - type: Transform
+ pos: 12.5,24.5
+ parent: 2
+ - uid: 2711
+ components:
+ - type: Transform
+ pos: 19.5,14.5
+ parent: 2
+ - uid: 2712
+ components:
+ - type: Transform
+ pos: 16.5,23.5
+ parent: 2
+- proto: RandomPainting
+ entities:
+ - uid: 2713
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - uid: 2714
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 2715
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 2716
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 2717
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 2
+ - uid: 2718
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+- proto: RandomPosterContraband
+ entities:
+ - uid: 2719
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 2
+ - uid: 2720
+ components:
+ - type: Transform
+ pos: 13.5,6.5
+ parent: 2
+ - uid: 2721
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+ - uid: 2722
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 2
+ - uid: 2723
+ components:
+ - type: Transform
+ pos: 11.5,-11.5
+ parent: 2
+ - uid: 2724
+ components:
+ - type: Transform
+ pos: 6.5,-6.5
+ parent: 2
+ - uid: 2725
+ components:
+ - type: Transform
+ pos: 6.5,-18.5
+ parent: 2
+ - uid: 2726
+ components:
+ - type: Transform
+ pos: -1.5,-16.5
+ parent: 2
+ - uid: 2727
+ components:
+ - type: Transform
+ pos: -14.5,-14.5
+ parent: 2
+ - uid: 2728
+ components:
+ - type: Transform
+ pos: -9.5,-19.5
+ parent: 2
+ - uid: 2729
+ components:
+ - type: Transform
+ pos: -18.5,-10.5
+ parent: 2
+ - uid: 2730
+ components:
+ - type: Transform
+ pos: -24.5,-8.5
+ parent: 2
+ - uid: 2731
+ components:
+ - type: Transform
+ pos: -24.5,-0.5
+ parent: 2
+ - uid: 2732
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 2
+ - uid: 2733
+ components:
+ - type: Transform
+ pos: -16.5,-3.5
+ parent: 2
+ - uid: 2734
+ components:
+ - type: Transform
+ pos: -16.5,5.5
+ parent: 2
+ - uid: 2735
+ components:
+ - type: Transform
+ pos: -15.5,12.5
+ parent: 2
+ - uid: 2736
+ components:
+ - type: Transform
+ pos: -20.5,13.5
+ parent: 2
+ - uid: 2737
+ components:
+ - type: Transform
+ pos: -24.5,12.5
+ parent: 2
+ - uid: 2738
+ components:
+ - type: Transform
+ pos: -27.5,6.5
+ parent: 2
+ - uid: 2739
+ components:
+ - type: Transform
+ pos: -16.5,17.5
+ parent: 2
+ - uid: 2740
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 2
+ - uid: 2741
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 2742
+ components:
+ - type: Transform
+ pos: -22.5,13.5
+ parent: 2
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 2743
+ components:
+ - type: Transform
+ pos: -21.5,13.5
+ parent: 2
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 2744
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 2
+ - uid: 2745
+ components:
+ - type: Transform
+ pos: -9.5,17.5
+ parent: 2
+ - uid: 2746
+ components:
+ - type: Transform
+ pos: -6.5,25.5
+ parent: 2
+ - uid: 2747
+ components:
+ - type: Transform
+ pos: -3.5,25.5
+ parent: 2
+ - uid: 2748
+ components:
+ - type: Transform
+ pos: -1.5,25.5
+ parent: 2
+ - uid: 2749
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 2
+ - uid: 2750
+ components:
+ - type: Transform
+ pos: 3.5,25.5
+ parent: 2
+ - uid: 2751
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
+ - uid: 2752
+ components:
+ - type: Transform
+ pos: -27.5,0.5
+ parent: 2
+ - uid: 2753
+ components:
+ - type: Transform
+ pos: -26.5,0.5
+ parent: 2
+ - uid: 2754
+ components:
+ - type: Transform
+ pos: -25.5,0.5
+ parent: 2
+- proto: ReinforcedWindow
+ entities:
+ - uid: 2755
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 2
+ - uid: 2756
+ components:
+ - type: Transform
+ pos: 8.5,-6.5
+ parent: 2
+ - uid: 2757
+ components:
+ - type: Transform
+ pos: 11.5,-16.5
+ parent: 2
+ - uid: 2758
+ components:
+ - type: Transform
+ pos: 9.5,-6.5
+ parent: 2
+ - uid: 2759
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 2
+ - uid: 2760
+ components:
+ - type: Transform
+ pos: 11.5,-10.5
+ parent: 2
+ - uid: 2761
+ components:
+ - type: Transform
+ pos: 11.5,-9.5
+ parent: 2
+ - uid: 2762
+ components:
+ - type: Transform
+ pos: 11.5,-8.5
+ parent: 2
+ - uid: 2763
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 2
+ - uid: 2764
+ components:
+ - type: Transform
+ pos: 9.5,-18.5
+ parent: 2
+ - uid: 2765
+ components:
+ - type: Transform
+ pos: 7.5,-18.5
+ parent: 2
+ - uid: 2766
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 2
+ - uid: 2767
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 2768
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 2769
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 2770
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - uid: 2771
+ components:
+ - type: Transform
+ pos: 8.5,-18.5
+ parent: 2
+ - uid: 2772
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 2773
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 2
+ - uid: 2774
+ components:
+ - type: Transform
+ pos: -5.5,6.5
+ parent: 2
+ - uid: 2775
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 2
+ - uid: 2776
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 2
+ - uid: 2777
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 2
+ - uid: 2778
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 2
+ - uid: 2779
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - uid: 2780
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+ - uid: 2781
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 2
+ - uid: 2782
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 2
+ - uid: 2783
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 2
+ - uid: 2784
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 2
+ - uid: 2785
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 2786
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 2787
+ components:
+ - type: Transform
+ pos: -12.5,-12.5
+ parent: 2
+ - uid: 2788
+ components:
+ - type: Transform
+ pos: -11.5,-12.5
+ parent: 2
+ - uid: 2789
+ components:
+ - type: Transform
+ pos: -17.5,-19.5
+ parent: 2
+ - uid: 2790
+ components:
+ - type: Transform
+ pos: -11.5,-20.5
+ parent: 2
+ - uid: 2791
+ components:
+ - type: Transform
+ pos: -12.5,-20.5
+ parent: 2
+ - uid: 2792
+ components:
+ - type: Transform
+ pos: -8.5,-19.5
+ parent: 2
+ - uid: 2793
+ components:
+ - type: Transform
+ pos: -6.5,-19.5
+ parent: 2
+ - uid: 2794
+ components:
+ - type: Transform
+ pos: -7.5,-19.5
+ parent: 2
+ - uid: 2795
+ components:
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 2
+ - uid: 2796
+ components:
+ - type: Transform
+ pos: -5.5,-14.5
+ parent: 2
+ - uid: 2797
+ components:
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 2
+ - uid: 2798
+ components:
+ - type: Transform
+ pos: -5.5,-15.5
+ parent: 2
+ - uid: 2799
+ components:
+ - type: Transform
+ pos: -5.5,-17.5
+ parent: 2
+ - uid: 2800
+ components:
+ - type: Transform
+ pos: -7.5,-13.5
+ parent: 2
+ - uid: 2801
+ components:
+ - type: Transform
+ pos: -16.5,-8.5
+ parent: 2
+ - uid: 2802
+ components:
+ - type: Transform
+ pos: -16.5,-7.5
+ parent: 2
+ - uid: 2803
+ components:
+ - type: Transform
+ pos: -16.5,-9.5
+ parent: 2
+ - uid: 2804
+ components:
+ - type: Transform
+ pos: -25.5,-5.5
+ parent: 2
+ - uid: 2805
+ components:
+ - type: Transform
+ pos: -20.5,0.5
+ parent: 2
+ - uid: 2806
+ components:
+ - type: Transform
+ pos: -25.5,-6.5
+ parent: 2
+ - uid: 2807
+ components:
+ - type: Transform
+ pos: -25.5,-7.5
+ parent: 2
+ - uid: 2808
+ components:
+ - type: Transform
+ pos: -19.5,0.5
+ parent: 2
+ - uid: 2809
+ components:
+ - type: Transform
+ pos: -20.5,-13.5
+ parent: 2
+ - uid: 2810
+ components:
+ - type: Transform
+ pos: -22.5,-13.5
+ parent: 2
+ - uid: 2811
+ components:
+ - type: Transform
+ pos: 15.5,18.5
+ parent: 2
+ - uid: 2812
+ components:
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 2
+ - uid: 2813
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 2
+ - uid: 2814
+ components:
+ - type: Transform
+ pos: -10.5,14.5
+ parent: 2
+ - uid: 2815
+ components:
+ - type: Transform
+ pos: -13.5,10.5
+ parent: 2
+ - uid: 2816
+ components:
+ - type: Transform
+ pos: -13.5,9.5
+ parent: 2
+ - uid: 2817
+ components:
+ - type: Transform
+ pos: -13.5,8.5
+ parent: 2
+ - uid: 2818
+ components:
+ - type: Transform
+ pos: -13.5,7.5
+ parent: 2
+ - uid: 2819
+ components:
+ - type: Transform
+ pos: -27.5,7.5
+ parent: 2
+ - uid: 2820
+ components:
+ - type: Transform
+ pos: -27.5,8.5
+ parent: 2
+ - uid: 2821
+ components:
+ - type: Transform
+ pos: -27.5,9.5
+ parent: 2
+ - uid: 2822
+ components:
+ - type: Transform
+ pos: -17.5,17.5
+ parent: 2
+ - uid: 2823
+ components:
+ - type: Transform
+ pos: -18.5,17.5
+ parent: 2
+ - uid: 2824
+ components:
+ - type: Transform
+ pos: -20.5,4.5
+ parent: 2
+ - uid: 2825
+ components:
+ - type: Transform
+ pos: -23.5,4.5
+ parent: 2
+ - uid: 2826
+ components:
+ - type: Transform
+ pos: -17.5,4.5
+ parent: 2
+ - uid: 2827
+ components:
+ - type: Transform
+ pos: -16.5,-19.5
+ parent: 2
+ - uid: 2828
+ components:
+ - type: Transform
+ pos: -18.5,10.5
+ parent: 2
+ - uid: 2829
+ components:
+ - type: Transform
+ pos: -21.5,7.5
+ parent: 2
+ - uid: 2830
+ components:
+ - type: Transform
+ pos: -21.5,10.5
+ parent: 2
+ - uid: 2831
+ components:
+ - type: Transform
+ pos: -18.5,7.5
+ parent: 2
+- proto: RemoteSignaller
+ entities:
+ - uid: 2832
+ components:
+ - type: Transform
+ pos: 3.270908,-14.351299
+ parent: 2
+ - uid: 2833
+ components:
+ - type: Transform
+ pos: 3.614658,-14.366924
+ parent: 2
+- proto: RubberStampSyndicate
+ entities:
+ - uid: 2834
+ components:
+ - type: Transform
+ pos: 0.83051443,3.6227193
+ parent: 2
+- proto: RubberStampTrader
+ entities:
+ - uid: 2835
+ components:
+ - type: Transform
+ pos: 17.485737,1.5503969
+ parent: 2
+- proto: SheetGlass
+ entities:
+ - uid: 2836
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 2837
+ components:
+ - type: Transform
+ pos: -6.5,-18.5
+ parent: 2
+ - uid: 2838
+ components:
+ - type: Transform
+ pos: -6.5,-18.5
+ parent: 2
+- proto: SheetPaper
+ entities:
+ - uid: 1973
+ components:
+ - type: Transform
+ parent: 1971
+ - type: Physics
+ canCollide: False
+- proto: SheetPlasma
+ entities:
+ - uid: 2839
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 2
+- proto: SheetPlasteel
+ entities:
+ - uid: 2840
+ components:
+ - type: Transform
+ pos: -6.5,-17.5
+ parent: 2
+ - uid: 2841
+ components:
+ - type: Transform
+ pos: -6.5,-17.5
+ parent: 2
+- proto: SheetPlastic
+ entities:
+ - uid: 2842
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 2
+- proto: SheetSteel
+ entities:
+ - uid: 2843
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 2844
+ components:
+ - type: Transform
+ pos: -7.5,-18.5
+ parent: 2
+ - uid: 2845
+ components:
+ - type: Transform
+ pos: -7.5,-18.5
+ parent: 2
+- proto: Shovel
+ entities:
+ - uid: 2846
+ components:
+ - type: Transform
+ pos: 14.419271,-9.410658
+ parent: 2
+- proto: ShuttersNormal
+ entities:
+ - uid: 2847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,5.5
+ parent: 2
+ - uid: 2848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,4.5
+ parent: 2
+ - uid: 2849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,3.5
+ parent: 2
+ - uid: 2850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,0.5
+ parent: 2
+ - uid: 2851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-0.5
+ parent: 2
+ - uid: 2852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-1.5
+ parent: 2
+- proto: ShuttersWindow
+ entities:
+ - uid: 2853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-16.5
+ parent: 2
+ - uid: 2854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-17.5
+ parent: 2
+- proto: ShuttersWindowOpen
+ entities:
+ - uid: 2855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,2.5
+ parent: 2
+ - uid: 2856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,1.5
+ parent: 2
+ - uid: 2857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,1.5
+ parent: 2
+ - uid: 2858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,2.5
+ parent: 2
+ - uid: 2859
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
+ - uid: 2860
+ components:
+ - type: Transform
+ pos: -27.5,0.5
+ parent: 2
+ - uid: 2861
+ components:
+ - type: Transform
+ pos: -26.5,0.5
+ parent: 2
+ - uid: 2862
+ components:
+ - type: Transform
+ pos: -25.5,0.5
+ parent: 2
+ - uid: 4144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,0.5
+ parent: 2
+ - uid: 4145
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 2
+- proto: SignalButton
+ entities:
+ - uid: 2863
+ components:
+ - type: MetaData
+ name: shutter button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,6.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2847:
+ - - Pressed
+ - Toggle
+ 2848:
+ - - Pressed
+ - Toggle
+ 2849:
+ - - Pressed
+ - Toggle
+ 184:
+ - - Pressed
+ - Toggle
+ 183:
+ - - Pressed
+ - Toggle
+ 2850:
+ - - Pressed
+ - Toggle
+ 2851:
+ - - Pressed
+ - Toggle
+ 2852:
+ - - Pressed
+ - Toggle
+ - uid: 2864
+ components:
+ - type: MetaData
+ name: tank storage button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-15.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2853:
+ - - Pressed
+ - Toggle
+ 2854:
+ - - Pressed
+ - Toggle
+- proto: SignalButtonDirectional
+ entities:
+ - uid: 2865
+ components:
+ - type: MetaData
+ name: entry lockdown button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-1.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2855:
+ - - Pressed
+ - Toggle
+ 2856:
+ - - Pressed
+ - Toggle
+ 2857:
+ - - Pressed
+ - Toggle
+ 2858:
+ - - Pressed
+ - Toggle
+ 2859:
+ - - Pressed
+ - Toggle
+ 2860:
+ - - Pressed
+ - Toggle
+ 2861:
+ - - Pressed
+ - Toggle
+ 2862:
+ - - Pressed
+ - Toggle
+- proto: SignalTrigger
+ entities:
+ - uid: 2866
+ components:
+ - type: Transform
+ pos: 5.6219444,-17.614243
+ parent: 2
+ - uid: 2867
+ components:
+ - type: Transform
+ pos: 5.6219444,-17.614243
+ parent: 2
+ - uid: 2868
+ components:
+ - type: Transform
+ pos: 5.6219444,-17.614243
+ parent: 2
+ - uid: 2869
+ components:
+ - type: Transform
+ pos: 5.6219444,-17.614243
+ parent: 2
+- proto: SignArmory
+ entities:
+ - uid: 2870
+ components:
+ - type: Transform
+ pos: -16.5,4.5
+ parent: 2
+- proto: SignBar
+ entities:
+ - uid: 2871
+ components:
+ - type: Transform
+ pos: -15.5,-6.5
+ parent: 2
+- proto: SignCans
+ entities:
+ - uid: 2872
+ components:
+ - type: Transform
+ pos: -14.5,-18.5
+ parent: 2
+- proto: SignChem
+ entities:
+ - uid: 2873
+ components:
+ - type: Transform
+ pos: 11.5,-13.5
+ parent: 2
+- proto: SignConference
+ entities:
+ - uid: 2874
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+- proto: SignCryo
+ entities:
+ - uid: 2875
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 2
+- proto: SignEngine
+ entities:
+ - uid: 2876
+ components:
+ - type: Transform
+ pos: -9.5,-12.5
+ parent: 2
+- proto: SignGravity
+ entities:
+ - uid: 2877
+ components:
+ - type: Transform
+ pos: -5.5,-12.5
+ parent: 2
+- proto: SignKitchen
+ entities:
+ - uid: 2878
+ components:
+ - type: Transform
+ pos: -15.5,13.5
+ parent: 2
+- proto: SignMedical
+ entities:
+ - uid: 2879
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 2
+- proto: SignPrison
+ entities:
+ - uid: 2880
+ components:
+ - type: Transform
+ pos: -8.5,14.5
+ parent: 2
+- proto: SignRestroom
+ entities:
+ - uid: 2881
+ components:
+ - type: Transform
+ pos: -21.5,-10.5
+ parent: 2
+- proto: SignSpace
+ entities:
+ - uid: 2882
+ components:
+ - type: Transform
+ pos: -24.5,3.5
+ parent: 2
+- proto: SignSurgery
+ entities:
+ - uid: 2883
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+- proto: Sink
+ entities:
+ - uid: 2884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-12.5
+ parent: 2
+- proto: SinkWide
+ entities:
+ - uid: 2885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-17.5
+ parent: 2
+ - uid: 2886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-4.5
+ parent: 2
+ - uid: 2887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,14.5
+ parent: 2
+- proto: SMESAdvanced
+ entities:
+ - uid: 2888
+ components:
+ - type: Transform
+ pos: -11.5,-16.5
+ parent: 2
+ - uid: 2889
+ components:
+ - type: Transform
+ pos: -11.5,-17.5
+ parent: 2
+ - uid: 2890
+ components:
+ - type: Transform
+ pos: -11.5,-15.5
+ parent: 2
+- proto: SodaDispenser
+ entities:
+ - uid: 2891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-7.5
+ parent: 2
+ - uid: 2892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,14.5
+ parent: 2
+- proto: SpaceVillainArcadeFilled
+ entities:
+ - uid: 2893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 2
+ - uid: 2894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-2.5
+ parent: 2
+- proto: SpawnMobCat
+ entities:
+ - uid: 2895
+ components:
+ - type: Transform
+ pos: -20.5,-0.5
+ parent: 2
+- proto: SpawnMobCatKitten
+ entities:
+ - uid: 2896
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+- proto: SpawnMobCleanBot
+ entities:
+ - uid: 2897
+ components:
+ - type: Transform
+ pos: -18.5,-1.5
+ parent: 2
+- proto: SpawnMobMedibot
+ entities:
+ - uid: 2898
+ components:
+ - type: Transform
+ pos: 8.5,-9.5
+ parent: 2
+- proto: SpawnMobSlug
+ entities:
+ - uid: 2899
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 2
+- proto: SpawnPointNukies
+ entities:
+ - uid: 2900
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 2
+ - uid: 2901
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 2902
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 2903
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+ - uid: 2904
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 2
+ - uid: 2905
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 2906
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 2907
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 2
+ - uid: 2908
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 2
+ - uid: 2909
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+- proto: SprayBottleSpaceCleaner
+ entities:
+ - uid: 2910
+ components:
+ - type: Transform
+ pos: -20.640627,-11.091785
+ parent: 2
+ - uid: 2911
+ components:
+ - type: Transform
+ pos: -20.312502,-11.32616
+ parent: 2
+- proto: StairDark
+ entities:
+ - uid: 2912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,2.5
+ parent: 2
+ - uid: 2913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,1.5
+ parent: 2
+ - uid: 2914
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 2
+ - uid: 2915
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,1.5
+ parent: 2
+ - uid: 2916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,10.5
+ parent: 2
+ - uid: 2917
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,6.5
+ parent: 2
+- proto: StasisBed
+ entities:
+ - uid: 2918
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 2
+- proto: StationAnchor
+ entities:
+ - uid: 2919
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+- proto: Stool
+ entities:
+ - uid: 2920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5210047,5.886641
+ parent: 2
+ - uid: 2921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.019062,-1.3823779
+ parent: 2
+ - uid: 2922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.034687,-2.3980026
+ parent: 2
+ - uid: 2923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.03209,-0.32817227
+ parent: 2
+ - uid: 2924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.03209,-1.3125472
+ parent: 2
+ - uid: 2925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.016464,-2.2656722
+ parent: 2
+- proto: StoolBar
+ entities:
+ - uid: 2926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-3.5
+ parent: 2
+ - uid: 2927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-4.5
+ parent: 2
+ - uid: 2928
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-5.5
+ parent: 2
+ - uid: 2929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-6.5
+ parent: 2
+ - uid: 2930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-7.5
+ parent: 2
+ - uid: 2931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-2.5
+ parent: 2
+- proto: SubstationBasic
+ entities:
+ - uid: 2932
+ components:
+ - type: Transform
+ pos: -10.5,-17.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 2933
+ components:
+ - type: Transform
+ pos: -10.5,-15.5
+ parent: 2
+ - type: CMExplosionEffect
+- proto: SuitStorageEVASyndicate
+ entities:
+ - uid: 2934
+ components:
+ - type: Transform
+ pos: -27.5,3.5
+ parent: 2
+ - uid: 2935
+ components:
+ - type: Transform
+ pos: -25.5,-0.5
+ parent: 2
+- proto: SurveillanceCameraGeneral
+ entities:
+ - uid: 2936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,5.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,12.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2938
+ components:
+ - type: Transform
+ pos: -25.5,5.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,11.5
+ parent: 2
+ - uid: 2940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,15.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,4.5
+ parent: 2
+ - uid: 2942
+ components:
+ - type: Transform
+ pos: -18.5,1.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,3.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-2.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-11.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2946
+ components:
+ - type: Transform
+ pos: -9.5,-18.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,-16.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2948
+ components:
+ - type: Transform
+ pos: -10.5,-11.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,-7.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2951
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2952
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2953
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,10.5
+ parent: 2
+ - uid: 2955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,15.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,16.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ - uid: 2957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-3.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+- proto: SurveillanceCameraRouterGeneral
+ entities:
+ - uid: 2958
+ components:
+ - type: Transform
+ pos: 12.5,9.5
+ parent: 2
+- proto: SurveillanceCameraWirelessRouterConstructed
+ entities:
+ - uid: 2959
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 2
+- proto: SyndicateMicrowave
+ entities:
+ - uid: 2960
+ components:
+ - type: Transform
+ pos: -19.5,16.5
+ parent: 2
+ - type: CMExplosionEffect
+- proto: SyndicatePersonalAI
+ entities:
+ - uid: 2961
+ components:
+ - type: Transform
+ pos: 1.4812105,4.649179
+ parent: 2
+- proto: SyndieFlag
+ entities:
+ - uid: 2962
+ components:
+ - type: Transform
+ pos: 17.5,3.5
+ parent: 2
+ - uid: 2963
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 2
+ - uid: 2964
+ components:
+ - type: Transform
+ pos: -27.5,-3.5
+ parent: 2
+ - uid: 2965
+ components:
+ - type: Transform
+ pos: -27.5,10.5
+ parent: 2
+ - uid: 2966
+ components:
+ - type: Transform
+ pos: -12.5,17.5
+ parent: 2
+ - uid: 2967
+ components:
+ - type: Transform
+ pos: -8.5,17.5
+ parent: 2
+ - uid: 2968
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 2
+ - uid: 2969
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 2
+ - uid: 2970
+ components:
+ - type: Transform
+ pos: 5.5,-10.5
+ parent: 2
+- proto: SyndieHandyFlag
+ entities:
+ - uid: 2971
+ components:
+ - type: Transform
+ pos: -15.4154625,8.758402
+ parent: 2
+- proto: SyndieMiniBomb
+ entities:
+ - uid: 2972
+ components:
+ - type: Transform
+ pos: -25.1979,5.545418
+ parent: 2
+ - type: CMExplosionEffect
+- proto: SyndyFlashGrenade
+ entities:
+ - uid: 2973
+ components:
+ - type: Transform
+ pos: -21.97027,-2.3498807
+ parent: 2
+ - uid: 2974
+ components:
+ - type: Transform
+ pos: 0.29944682,15.560935
+ parent: 2
+- proto: SyringeBicaridine
+ entities:
+ - uid: 2975
+ components:
+ - type: Transform
+ pos: 1.3918278,-17.367044
+ parent: 2
+- proto: SyringeSaline
+ entities:
+ - uid: 2976
+ components:
+ - type: Transform
+ pos: 1.3125551,-17.335674
+ parent: 2
+- proto: Table
+ entities:
+ - uid: 2977
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 2
+ - uid: 2978
+ components:
+ - type: Transform
+ pos: -8.5,16.5
+ parent: 2
+- proto: TableCarpet
+ entities:
+ - uid: 2979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,6.5
+ parent: 2
+ - uid: 2980
+ components:
+ - type: Transform
+ pos: 16.5,14.5
+ parent: 2
+ - uid: 2981
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,9.5
+ parent: 2
+ - uid: 2982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,8.5
+ parent: 2
+ - uid: 2983
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,9.5
+ parent: 2
+ - uid: 2984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,8.5
+ parent: 2
+- proto: TableCounterWood
+ entities:
+ - uid: 2985
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 2
+ - uid: 2986
+ components:
+ - type: Transform
+ pos: -21.5,-2.5
+ parent: 2
+ - uid: 2987
+ components:
+ - type: Transform
+ pos: -21.5,-3.5
+ parent: 2
+ - uid: 2988
+ components:
+ - type: Transform
+ pos: -21.5,-4.5
+ parent: 2
+ - uid: 2989
+ components:
+ - type: Transform
+ pos: -21.5,-5.5
+ parent: 2
+ - uid: 2990
+ components:
+ - type: Transform
+ pos: -21.5,-6.5
+ parent: 2
+ - uid: 2991
+ components:
+ - type: Transform
+ pos: -21.5,-7.5
+ parent: 2
+ - uid: 2992
+ components:
+ - type: Transform
+ pos: -24.5,-5.5
+ parent: 2
+ - uid: 2993
+ components:
+ - type: Transform
+ pos: -23.5,-2.5
+ parent: 2
+ - uid: 2994
+ components:
+ - type: Transform
+ pos: -24.5,-6.5
+ parent: 2
+ - uid: 2995
+ components:
+ - type: Transform
+ pos: -24.5,-7.5
+ parent: 2
+- proto: TableFancyBlack
+ entities:
+ - uid: 2996
+ components:
+ - type: Transform
+ pos: 9.5,5.5
+ parent: 2
+ - uid: 2997
+ components:
+ - type: Transform
+ pos: 10.5,5.5
+ parent: 2
+ - uid: 2998
+ components:
+ - type: Transform
+ pos: 11.5,5.5
+ parent: 2
+ - uid: 2999
+ components:
+ - type: Transform
+ pos: 12.5,5.5
+ parent: 2
+ - uid: 3000
+ components:
+ - type: Transform
+ pos: 13.5,5.5
+ parent: 2
+ - uid: 3001
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 2
+ - uid: 3002
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 2
+ - uid: 3003
+ components:
+ - type: Transform
+ pos: 11.5,-1.5
+ parent: 2
+ - uid: 3004
+ components:
+ - type: Transform
+ pos: 12.5,-1.5
+ parent: 2
+ - uid: 3005
+ components:
+ - type: Transform
+ pos: 13.5,-1.5
+ parent: 2
+ - uid: 3006
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 2
+ - uid: 3007
+ components:
+ - type: Transform
+ pos: 9.5,-0.5
+ parent: 2
+- proto: TableFancyRed
+ entities:
+ - uid: 3008
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 3009
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+ - uid: 3010
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 3011
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 2
+ - uid: 3012
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 3013
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 3014
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 2
+ - uid: 3015
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 3016
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 3017
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 3018
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 2
+- proto: TableGlass
+ entities:
+ - uid: 3019
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-16.5
+ parent: 2
+ - uid: 3020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-17.5
+ parent: 2
+ - uid: 3021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-14.5
+ parent: 2
+ - uid: 3022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-13.5
+ parent: 2
+ - uid: 3023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-17.5
+ parent: 2
+ - uid: 3024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-17.5
+ parent: 2
+ - uid: 3025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-17.5
+ parent: 2
+- proto: TablePlasmaGlass
+ entities:
+ - uid: 3026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-17.5
+ parent: 2
+ - uid: 3027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-18.5
+ parent: 2
+ - uid: 3028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-18.5
+ parent: 2
+- proto: TableReinforced
+ entities:
+ - uid: 3029
+ components:
+ - type: Transform
+ pos: -17.5,16.5
+ parent: 2
+ - uid: 3030
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 2
+ - uid: 3031
+ components:
+ - type: Transform
+ pos: 17.5,2.5
+ parent: 2
+ - uid: 3032
+ components:
+ - type: Transform
+ pos: 17.5,1.5
+ parent: 2
+ - uid: 3033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-11.5
+ parent: 2
+ - uid: 3034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-12.5
+ parent: 2
+ - uid: 3035
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-12.5
+ parent: 2
+ - uid: 3036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-12.5
+ parent: 2
+ - uid: 3037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-7.5
+ parent: 2
+ - uid: 3038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-7.5
+ parent: 2
+ - uid: 3039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-7.5
+ parent: 2
+ - uid: 3040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,16.5
+ parent: 2
+ - uid: 3041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,16.5
+ parent: 2
+ - uid: 3042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,16.5
+ parent: 2
+ - uid: 3043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,15.5
+ parent: 2
+ - uid: 3044
+ components:
+ - type: Transform
+ pos: -28.5,-0.5
+ parent: 2
+ - uid: 3045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,15.5
+ parent: 2
+ - uid: 3046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,16.5
+ parent: 2
+ - uid: 3047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,16.5
+ parent: 2
+ - uid: 3048
+ components:
+ - type: Transform
+ pos: -26.5,11.5
+ parent: 2
+ - uid: 3049
+ components:
+ - type: Transform
+ pos: -25.5,11.5
+ parent: 2
+ - uid: 3050
+ components:
+ - type: Transform
+ pos: -26.5,5.5
+ parent: 2
+ - uid: 3051
+ components:
+ - type: Transform
+ pos: -25.5,5.5
+ parent: 2
+ - uid: 3052
+ components:
+ - type: Transform
+ pos: -26.5,6.5
+ parent: 2
+ - uid: 3053
+ components:
+ - type: Transform
+ pos: -19.5,16.5
+ parent: 2
+ - uid: 3054
+ components:
+ - type: Transform
+ pos: -18.5,16.5
+ parent: 2
+ - uid: 3055
+ components:
+ - type: Transform
+ pos: -16.5,16.5
+ parent: 2
+ - uid: 3056
+ components:
+ - type: Transform
+ pos: -16.5,15.5
+ parent: 2
+ - uid: 3057
+ components:
+ - type: Transform
+ pos: -16.5,14.5
+ parent: 2
+ - uid: 3058
+ components:
+ - type: Transform
+ pos: -19.5,10.5
+ parent: 2
+ - uid: 3059
+ components:
+ - type: Transform
+ pos: -20.5,10.5
+ parent: 2
+ - uid: 3060
+ components:
+ - type: Transform
+ pos: -18.5,8.5
+ parent: 2
+ - uid: 3061
+ components:
+ - type: Transform
+ pos: -28.5,-1.5
+ parent: 2
+ - uid: 3062
+ components:
+ - type: Transform
+ pos: -27.5,-0.5
+ parent: 2
+- proto: TableReinforcedGlass
+ entities:
+ - uid: 3063
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-15.5
+ parent: 2
+ - uid: 3064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-13.5
+ parent: 2
+ - uid: 3065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-13.5
+ parent: 2
+ - uid: 3066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 3067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 2
+ - uid: 3068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-13.5
+ parent: 2
+ - uid: 3069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-13.5
+ parent: 2
+ - uid: 3070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-17.5
+ parent: 2
+ - uid: 3071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-17.5
+ parent: 2
+- proto: TableWood
+ entities:
+ - uid: 3072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,9.5
+ parent: 2
+ - uid: 3073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,9.5
+ parent: 2
+ - uid: 3074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,9.5
+ parent: 2
+ - uid: 3075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,9.5
+ parent: 2
+ - uid: 3076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,8.5
+ parent: 2
+ - uid: 3077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,7.5
+ parent: 2
+- proto: TargetClown
+ entities:
+ - uid: 3078
+ components:
+ - type: Transform
+ pos: -1.5,20.5
+ parent: 2
+- proto: TargetHuman
+ entities:
+ - uid: 3079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,18.5
+ parent: 2
+- proto: ThrowingKnife
+ entities:
+ - uid: 3080
+ components:
+ - type: Transform
+ pos: 0.6275718,15.783591
+ parent: 2
+ - uid: 3081
+ components:
+ - type: Transform
+ pos: 0.6744468,15.560935
+ parent: 2
+- proto: TimerTrigger
+ entities:
+ - uid: 3082
+ components:
+ - type: Transform
+ pos: 5.3875694,-17.332993
+ parent: 2
+ - uid: 3083
+ components:
+ - type: Transform
+ pos: 5.3875694,-17.332993
+ parent: 2
+ - uid: 3084
+ components:
+ - type: Transform
+ pos: 5.3875694,-17.332993
+ parent: 2
+ - uid: 3085
+ components:
+ - type: Transform
+ pos: 5.3875694,-17.332993
+ parent: 2
+- proto: ToiletEmpty
+ entities:
+ - uid: 3086
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 2
+- proto: ToolboxMechanicalFilledAllTools
+ entities:
+ - uid: 3087
+ components:
+ - type: Transform
+ pos: -8.458835,-18.242048
+ parent: 2
+- proto: ToolboxSyndicate
+ entities:
+ - uid: 3088
+ components:
+ - type: Transform
+ pos: 17.480658,5.6128135
+ parent: 2
+ - uid: 3089
+ components:
+ - type: Transform
+ pos: 17.480658,5.6232305
+ parent: 2
+ - uid: 3090
+ components:
+ - type: Transform
+ pos: 17.480658,5.6232305
+ parent: 2
+ - uid: 3091
+ components:
+ - type: Transform
+ pos: 17.480658,5.6232305
+ parent: 2
+- proto: ToolboxSyndicateFilled
+ entities:
+ - uid: 3092
+ components:
+ - type: Transform
+ pos: -8.341647,-18.68736
+ parent: 2
+ - uid: 3093
+ components:
+ - type: Transform
+ pos: -26.501646,5.6081076
+ parent: 2
+ - uid: 3094
+ components:
+ - type: Transform
+ pos: -26.515438,6.1192718
+ parent: 2
+- proto: TowelColorNT
+ entities:
+ - uid: 1793
+ components:
+ - type: Transform
+ parent: 1788
+ - type: Physics
+ canCollide: False
+- proto: TowelColorSyndicate
+ entities:
+ - uid: 3095
+ components:
+ - type: Transform
+ pos: -21.511219,-7.3902307
+ parent: 2
+ - uid: 3096
+ components:
+ - type: Transform
+ pos: -21.414148,-7.2201133
+ parent: 2
+ - uid: 3097
+ components:
+ - type: Transform
+ pos: 10.383946,18.822206
+ parent: 2
+- proto: ToyAmongPequeno
+ entities:
+ - uid: 3098
+ components:
+ - type: Transform
+ pos: 1.9007514,28.694508
+ parent: 2
+- proto: ToyFigurineFootsoldier
+ entities:
+ - uid: 3099
+ components:
+ - type: Transform
+ pos: 2.54736,1.4182131
+ parent: 2
+- proto: ToyFigurineNukie
+ entities:
+ - uid: 3100
+ components:
+ - type: Transform
+ pos: 0.46142244,1.5588381
+ parent: 2
+- proto: ToyFigurineNukieCommander
+ entities:
+ - uid: 3101
+ components:
+ - type: Transform
+ pos: 2.4770474,2.7072756
+ parent: 2
+- proto: ToyFigurineNukieElite
+ entities:
+ - uid: 3102
+ components:
+ - type: Transform
+ pos: 0.55517244,2.8947756
+ parent: 2
+- proto: ToyMauler
+ entities:
+ - uid: 3103
+ components:
+ - type: Transform
+ pos: 1.5046084,0.8431581
+ parent: 2
+- proto: ToyNuke
+ entities:
+ - uid: 3104
+ components:
+ - type: Transform
+ pos: -14.3409195,9.788077
+ parent: 2
+- proto: ToySwordDoubled
+ entities:
+ - uid: 3105
+ components:
+ - type: Transform
+ pos: -21.508148,-5.4995294
+ parent: 2
+- proto: TrashBag
+ entities:
+ - uid: 3106
+ components:
+ - type: Transform
+ pos: -20.119192,-9.653258
+ parent: 2
+- proto: UprightPianoInstrument
+ entities:
+ - uid: 3107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,-7.5
+ parent: 2
+- proto: VendingMachineBoozeSyndicate
+ entities:
+ - uid: 3108
+ components:
+ - type: Transform
+ pos: -24.5,-2.5
+ parent: 2
+ - uid: 3109
+ components:
+ - type: Transform
+ pos: -16.5,13.5
+ parent: 2
+- proto: VendingMachineChemicalsSyndicate
+ entities:
+ - uid: 3110
+ components:
+ - type: Transform
+ pos: 8.5,-17.5
+ parent: 2
+- proto: VendingMachineCigs
+ entities:
+ - uid: 3111
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 2
+- proto: VendingMachineClothing
+ entities:
+ - uid: 3112
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 2
+- proto: VendingMachineSyndieDrobe
+ entities:
+ - uid: 3113
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 2
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 3114
+ components:
+ - type: Transform
+ pos: -24.5,11.5
+ parent: 2
+ - uid: 3115
+ components:
+ - type: Transform
+ pos: -28.5,3.5
+ parent: 2
+- proto: VendingMachineTheater
+ entities:
+ - uid: 3116
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 2
+- proto: VendingMachineWinter
+ entities:
+ - uid: 3117
+ components:
+ - type: Transform
+ pos: -6.5,14.5
+ parent: 2
+- proto: VendingMachineYouTool
+ entities:
+ - uid: 3118
+ components:
+ - type: Transform
+ pos: -24.5,5.5
+ parent: 2
+- proto: WallBasaltCobblebrick
+ entities:
+ - uid: 3119
+ components:
+ - type: Transform
+ pos: -12.5,-8.5
+ parent: 2
+ - uid: 3120
+ components:
+ - type: Transform
+ pos: -12.5,-7.5
+ parent: 2
+ - uid: 3121
+ components:
+ - type: Transform
+ pos: -12.5,-9.5
+ parent: 2
+ - uid: 3122
+ components:
+ - type: Transform
+ pos: -11.5,-9.5
+ parent: 2
+ - uid: 3123
+ components:
+ - type: Transform
+ pos: -7.5,10.5
+ parent: 2
+ - uid: 3124
+ components:
+ - type: Transform
+ pos: -8.5,10.5
+ parent: 2
+ - uid: 3125
+ components:
+ - type: Transform
+ pos: -12.5,-0.5
+ parent: 2
+ - uid: 3126
+ components:
+ - type: Transform
+ pos: -6.5,10.5
+ parent: 2
+ - uid: 3127
+ components:
+ - type: Transform
+ pos: -13.5,-0.5
+ parent: 2
+ - uid: 3128
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 2
+ - uid: 3129
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 2
+ - uid: 3130
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 2
+ - uid: 3131
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 2
+ - uid: 3132
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 2
+ - uid: 3133
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 2
+ - uid: 3134
+ components:
+ - type: Transform
+ pos: -5.5,25.5
+ parent: 2
+ - uid: 3135
+ components:
+ - type: Transform
+ pos: -4.5,25.5
+ parent: 2
+ - uid: 3136
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 2
+ - uid: 3137
+ components:
+ - type: Transform
+ pos: 2.5,25.5
+ parent: 2
+ - uid: 3138
+ components:
+ - type: Transform
+ pos: -12.5,-1.5
+ parent: 2
+ - uid: 3139
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 2
+- proto: WallmountTelescreen
+ entities:
+ - uid: 3140
+ components:
+ - type: Transform
+ pos: -27.5,-0.5
+ parent: 2
+- proto: WallPlastitanium
+ entities:
+ - uid: 3141
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
+ - uid: 3142
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 2
+ - uid: 3143
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 2
+ - uid: 3144
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 3145
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 2
+ - uid: 3146
+ components:
+ - type: Transform
+ pos: 10.5,10.5
+ parent: 2
+ - uid: 3147
+ components:
+ - type: Transform
+ pos: 8.5,9.5
+ parent: 2
+ - uid: 3148
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 2
+ - uid: 3149
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 2
+ - uid: 3150
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 2
+ - uid: 3151
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 2
+ - uid: 3152
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+ - uid: 3153
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 3154
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 2
+ - uid: 3155
+ components:
+ - type: Transform
+ pos: 7.5,-3.5
+ parent: 2
+ - uid: 3156
+ components:
+ - type: Transform
+ pos: 8.5,-3.5
+ parent: 2
+ - uid: 3157
+ components:
+ - type: Transform
+ pos: 12.5,-2.5
+ parent: 2
+ - uid: 3158
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 2
+ - uid: 3159
+ components:
+ - type: Transform
+ pos: 14.5,-2.5
+ parent: 2
+ - uid: 3160
+ components:
+ - type: Transform
+ pos: 18.5,-2.5
+ parent: 2
+ - uid: 3161
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 2
+ - uid: 3162
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 2
+ - uid: 3163
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 2
+ - uid: 3164
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 2
+ - uid: 3165
+ components:
+ - type: Transform
+ pos: 8.5,6.5
+ parent: 2
+ - uid: 3166
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 2
+ - uid: 3167
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 2
+ - uid: 3168
+ components:
+ - type: Transform
+ pos: 16.5,10.5
+ parent: 2
+ - uid: 3169
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 2
+ - uid: 3170
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 2
+ - uid: 3171
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 2
+ - uid: 3172
+ components:
+ - type: Transform
+ pos: 15.5,10.5
+ parent: 2
+ - uid: 3173
+ components:
+ - type: Transform
+ pos: 17.5,-2.5
+ parent: 2
+ - uid: 3174
+ components:
+ - type: Transform
+ pos: 16.5,-2.5
+ parent: 2
+ - uid: 3175
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 2
+ - uid: 3176
+ components:
+ - type: Transform
+ pos: 18.5,-1.5
+ parent: 2
+ - uid: 3177
+ components:
+ - type: Transform
+ pos: 11.5,-2.5
+ parent: 2
+ - uid: 3178
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+ - uid: 3179
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 2
+ - uid: 3180
+ components:
+ - type: Transform
+ pos: 11.5,10.5
+ parent: 2
+ - uid: 3181
+ components:
+ - type: Transform
+ pos: 12.5,10.5
+ parent: 2
+ - uid: 3182
+ components:
+ - type: Transform
+ pos: 11.5,6.5
+ parent: 2
+ - uid: 3183
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 2
+ - uid: 3184
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 2
+ - uid: 3185
+ components:
+ - type: Transform
+ pos: 14.5,10.5
+ parent: 2
+ - uid: 3186
+ components:
+ - type: Transform
+ pos: 18.5,6.5
+ parent: 2
+ - uid: 3187
+ components:
+ - type: Transform
+ pos: 18.5,5.5
+ parent: 2
+ - uid: 3188
+ components:
+ - type: Transform
+ pos: 18.5,4.5
+ parent: 2
+ - uid: 3189
+ components:
+ - type: Transform
+ pos: 18.5,3.5
+ parent: 2
+ - uid: 3190
+ components:
+ - type: Transform
+ pos: 9.5,-2.5
+ parent: 2
+ - uid: 3191
+ components:
+ - type: Transform
+ pos: 8.5,-2.5
+ parent: 2
+ - uid: 3192
+ components:
+ - type: Transform
+ pos: 18.5,10.5
+ parent: 2
+ - uid: 3193
+ components:
+ - type: Transform
+ pos: 18.5,2.5
+ parent: 2
+ - uid: 3194
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 2
+ - uid: 3195
+ components:
+ - type: Transform
+ pos: 18.5,-0.5
+ parent: 2
+ - uid: 3196
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 2
+ - uid: 3197
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 2
+ - uid: 3198
+ components:
+ - type: Transform
+ pos: 13.5,6.5
+ parent: 2
+ - uid: 3199
+ components:
+ - type: Transform
+ pos: 17.5,6.5
+ parent: 2
+ - uid: 3200
+ components:
+ - type: Transform
+ pos: 14.5,6.5
+ parent: 2
+ - uid: 3201
+ components:
+ - type: Transform
+ pos: 13.5,10.5
+ parent: 2
+ - uid: 3202
+ components:
+ - type: Transform
+ pos: 17.5,3.5
+ parent: 2
+ - uid: 3203
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 2
+ - uid: 3204
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 2
+ - uid: 3205
+ components:
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 2
+ - uid: 3206
+ components:
+ - type: Transform
+ pos: -5.5,-2.5
+ parent: 2
+ - uid: 3207
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 2
+ - uid: 3208
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 3209
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 2
+ - uid: 3210
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 3211
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - uid: 3212
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 2
+ - uid: 3213
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 2
+ - uid: 3214
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 2
+ - uid: 3215
+ components:
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 2
+ - uid: 3216
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 2
+ - uid: 3217
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+ - uid: 3218
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 2
+ - uid: 3219
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 2
+ - uid: 3220
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - uid: 3221
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 2
+ - uid: 3222
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 2
+ - uid: 3223
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 3224
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 2
+ - uid: 3225
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 2
+ - uid: 3226
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+ - uid: 3227
+ components:
+ - type: Transform
+ pos: 5.5,-10.5
+ parent: 2
+ - uid: 3228
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 2
+ - uid: 3229
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+ - uid: 3230
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 2
+ - uid: 3231
+ components:
+ - type: Transform
+ pos: -1.5,-16.5
+ parent: 2
+ - uid: 3232
+ components:
+ - type: Transform
+ pos: -1.5,-14.5
+ parent: 2
+ - uid: 3233
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 3234
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 2
+ - uid: 3235
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 2
+ - uid: 3236
+ components:
+ - type: Transform
+ pos: 4.5,-18.5
+ parent: 2
+ - uid: 3237
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+ - uid: 3238
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 2
+ - uid: 3239
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+ - uid: 3240
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - uid: 3241
+ components:
+ - type: Transform
+ pos: 10.5,-6.5
+ parent: 2
+ - uid: 3242
+ components:
+ - type: Transform
+ pos: 11.5,-11.5
+ parent: 2
+ - uid: 3243
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 2
+ - uid: 3244
+ components:
+ - type: Transform
+ pos: 11.5,-13.5
+ parent: 2
+ - uid: 3245
+ components:
+ - type: Transform
+ pos: 6.5,-6.5
+ parent: 2
+ - uid: 3246
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 2
+ - uid: 3247
+ components:
+ - type: Transform
+ pos: -1.5,-13.5
+ parent: 2
+ - uid: 3248
+ components:
+ - type: Transform
+ pos: 11.5,-7.5
+ parent: 2
+ - uid: 3249
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 3250
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 3251
+ components:
+ - type: Transform
+ pos: 6.5,-18.5
+ parent: 2
+ - uid: 3252
+ components:
+ - type: Transform
+ pos: 11.5,-12.5
+ parent: 2
+ - uid: 3253
+ components:
+ - type: Transform
+ pos: 10.5,-18.5
+ parent: 2
+ - uid: 3254
+ components:
+ - type: Transform
+ pos: 11.5,-6.5
+ parent: 2
+ - uid: 3255
+ components:
+ - type: Transform
+ pos: 11.5,-18.5
+ parent: 2
+ - uid: 3256
+ components:
+ - type: Transform
+ pos: 11.5,-17.5
+ parent: 2
+ - uid: 3257
+ components:
+ - type: Transform
+ pos: -16.5,-6.5
+ parent: 2
+ - uid: 3258
+ components:
+ - type: Transform
+ pos: -5.5,-12.5
+ parent: 2
+ - uid: 3259
+ components:
+ - type: Transform
+ pos: -9.5,-12.5
+ parent: 2
+ - uid: 3260
+ components:
+ - type: Transform
+ pos: -9.5,-13.5
+ parent: 2
+ - uid: 3261
+ components:
+ - type: Transform
+ pos: -10.5,-12.5
+ parent: 2
+ - uid: 3262
+ components:
+ - type: Transform
+ pos: -13.5,-12.5
+ parent: 2
+ - uid: 3263
+ components:
+ - type: Transform
+ pos: -14.5,-12.5
+ parent: 2
+ - uid: 3264
+ components:
+ - type: Transform
+ pos: -14.5,-13.5
+ parent: 2
+ - uid: 3265
+ components:
+ - type: Transform
+ pos: -14.5,-14.5
+ parent: 2
+ - uid: 3266
+ components:
+ - type: Transform
+ pos: -14.5,-19.5
+ parent: 2
+ - uid: 3267
+ components:
+ - type: Transform
+ pos: -14.5,-20.5
+ parent: 2
+ - uid: 3268
+ components:
+ - type: Transform
+ pos: -13.5,-20.5
+ parent: 2
+ - uid: 3269
+ components:
+ - type: Transform
+ pos: -10.5,-20.5
+ parent: 2
+ - uid: 3270
+ components:
+ - type: Transform
+ pos: -9.5,-20.5
+ parent: 2
+ - uid: 3271
+ components:
+ - type: Transform
+ pos: -5.5,-20.5
+ parent: 2
+ - uid: 3272
+ components:
+ - type: Transform
+ pos: -4.5,-20.5
+ parent: 2
+ - uid: 3273
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 2
+ - uid: 3274
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 2
+ - uid: 3275
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+ - uid: 3276
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 3277
+ components:
+ - type: Transform
+ pos: -5.5,-13.5
+ parent: 2
+ - uid: 3278
+ components:
+ - type: Transform
+ pos: -5.5,-19.5
+ parent: 2
+ - uid: 3279
+ components:
+ - type: Transform
+ pos: -9.5,-19.5
+ parent: 2
+ - uid: 3280
+ components:
+ - type: Transform
+ pos: -15.5,-6.5
+ parent: 2
+ - uid: 3281
+ components:
+ - type: Transform
+ pos: -16.5,-2.5
+ parent: 2
+ - uid: 3282
+ components:
+ - type: Transform
+ pos: -16.5,-1.5
+ parent: 2
+ - uid: 3283
+ components:
+ - type: Transform
+ pos: -15.5,-3.5
+ parent: 2
+ - uid: 3284
+ components:
+ - type: Transform
+ pos: -16.5,-3.5
+ parent: 2
+ - uid: 3285
+ components:
+ - type: Transform
+ pos: -16.5,-0.5
+ parent: 2
+ - uid: 3286
+ components:
+ - type: Transform
+ pos: -16.5,-10.5
+ parent: 2
+ - uid: 3287
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 2
+ - uid: 3288
+ components:
+ - type: Transform
+ pos: -18.5,-10.5
+ parent: 2
+ - uid: 3289
+ components:
+ - type: Transform
+ pos: -19.5,-10.5
+ parent: 2
+ - uid: 3290
+ components:
+ - type: Transform
+ pos: -20.5,-10.5
+ parent: 2
+ - uid: 3291
+ components:
+ - type: Transform
+ pos: -21.5,-10.5
+ parent: 2
+ - uid: 3292
+ components:
+ - type: Transform
+ pos: -23.5,-11.5
+ parent: 2
+ - uid: 3293
+ components:
+ - type: Transform
+ pos: -23.5,-10.5
+ parent: 2
+ - uid: 3294
+ components:
+ - type: Transform
+ pos: -24.5,-10.5
+ parent: 2
+ - uid: 3295
+ components:
+ - type: Transform
+ pos: -24.5,-9.5
+ parent: 2
+ - uid: 3296
+ components:
+ - type: Transform
+ pos: -24.5,-8.5
+ parent: 2
+ - uid: 3297
+ components:
+ - type: Transform
+ pos: -25.5,-1.5
+ parent: 2
+ - uid: 3298
+ components:
+ - type: Transform
+ pos: -25.5,-2.5
+ parent: 2
+ - uid: 3299
+ components:
+ - type: Transform
+ pos: -25.5,-4.5
+ parent: 2
+ - uid: 3300
+ components:
+ - type: Transform
+ pos: -24.5,-1.5
+ parent: 2
+ - uid: 3301
+ components:
+ - type: Transform
+ pos: -24.5,-0.5
+ parent: 2
+ - uid: 3302
+ components:
+ - type: Transform
+ pos: -24.5,0.5
+ parent: 2
+ - uid: 3303
+ components:
+ - type: Transform
+ pos: -23.5,0.5
+ parent: 2
+ - uid: 3304
+ components:
+ - type: Transform
+ pos: -22.5,0.5
+ parent: 2
+ - uid: 3305
+ components:
+ - type: Transform
+ pos: -21.5,0.5
+ parent: 2
+ - uid: 3306
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 2
+ - uid: 3307
+ components:
+ - type: Transform
+ pos: -17.5,0.5
+ parent: 2
+ - uid: 3308
+ components:
+ - type: Transform
+ pos: -16.5,0.5
+ parent: 2
+ - uid: 3309
+ components:
+ - type: Transform
+ pos: -25.5,-8.5
+ parent: 2
+ - uid: 3310
+ components:
+ - type: Transform
+ pos: -23.5,-13.5
+ parent: 2
+ - uid: 3311
+ components:
+ - type: Transform
+ pos: -21.5,-13.5
+ parent: 2
+ - uid: 3312
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 2
+ - uid: 3313
+ components:
+ - type: Transform
+ pos: -19.5,-13.5
+ parent: 2
+ - uid: 3314
+ components:
+ - type: Transform
+ pos: -18.5,-13.5
+ parent: 2
+ - uid: 3315
+ components:
+ - type: Transform
+ pos: -17.5,-13.5
+ parent: 2
+ - uid: 3316
+ components:
+ - type: Transform
+ pos: -16.5,-13.5
+ parent: 2
+ - uid: 3317
+ components:
+ - type: Transform
+ pos: -16.5,-12.5
+ parent: 2
+ - uid: 3318
+ components:
+ - type: Transform
+ pos: -16.5,-11.5
+ parent: 2
+ - uid: 3319
+ components:
+ - type: Transform
+ pos: -19.5,-11.5
+ parent: 2
+ - uid: 3320
+ components:
+ - type: Transform
+ pos: -7.5,16.5
+ parent: 2
+ - uid: 3321
+ components:
+ - type: Transform
+ pos: -7.5,17.5
+ parent: 2
+ - uid: 3322
+ components:
+ - type: Transform
+ pos: -9.5,21.5
+ parent: 2
+ - uid: 3323
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 2
+ - uid: 3324
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 2
+ - uid: 3325
+ components:
+ - type: Transform
+ pos: 9.5,19.5
+ parent: 2
+ - uid: 3326
+ components:
+ - type: Transform
+ pos: 7.5,17.5
+ parent: 2
+ - uid: 3327
+ components:
+ - type: Transform
+ pos: 6.5,17.5
+ parent: 2
+ - uid: 3328
+ components:
+ - type: Transform
+ pos: 5.5,17.5
+ parent: 2
+ - uid: 3329
+ components:
+ - type: Transform
+ pos: 5.5,18.5
+ parent: 2
+ - uid: 3330
+ components:
+ - type: Transform
+ pos: 5.5,19.5
+ parent: 2
+ - uid: 3331
+ components:
+ - type: Transform
+ pos: 5.5,20.5
+ parent: 2
+ - uid: 3332
+ components:
+ - type: Transform
+ pos: 5.5,21.5
+ parent: 2
+ - uid: 3333
+ components:
+ - type: Transform
+ pos: 5.5,22.5
+ parent: 2
+ - uid: 3334
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 2
+ - uid: 3335
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 2
+ - uid: 3336
+ components:
+ - type: Transform
+ pos: 9.5,20.5
+ parent: 2
+ - uid: 3337
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 2
+ - uid: 3338
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 2
+ - uid: 3339
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 2
+ - uid: 3340
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 2
+ - uid: 3341
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 2
+ - uid: 3342
+ components:
+ - type: Transform
+ pos: 17.5,18.5
+ parent: 2
+ - uid: 3343
+ components:
+ - type: Transform
+ pos: -10.5,21.5
+ parent: 2
+ - uid: 3344
+ components:
+ - type: Transform
+ pos: 13.5,15.5
+ parent: 2
+ - uid: 3345
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 2
+ - uid: 3346
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 2
+ - uid: 3347
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 2
+ - uid: 3348
+ components:
+ - type: Transform
+ pos: 17.5,17.5
+ parent: 2
+ - uid: 3349
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 2
+ - uid: 3350
+ components:
+ - type: Transform
+ pos: 14.5,18.5
+ parent: 2
+ - uid: 3351
+ components:
+ - type: Transform
+ pos: 17.5,13.5
+ parent: 2
+ - uid: 3352
+ components:
+ - type: Transform
+ pos: 16.5,18.5
+ parent: 2
+ - uid: 3353
+ components:
+ - type: Transform
+ pos: 16.5,13.5
+ parent: 2
+ - uid: 3354
+ components:
+ - type: Transform
+ pos: 15.5,13.5
+ parent: 2
+ - uid: 3355
+ components:
+ - type: Transform
+ pos: 14.5,13.5
+ parent: 2
+ - uid: 3356
+ components:
+ - type: Transform
+ pos: 13.5,13.5
+ parent: 2
+ - uid: 3357
+ components:
+ - type: Transform
+ pos: 9.5,17.5
+ parent: 2
+ - uid: 3358
+ components:
+ - type: Transform
+ pos: 10.5,17.5
+ parent: 2
+ - uid: 3359
+ components:
+ - type: Transform
+ pos: 9.5,18.5
+ parent: 2
+ - uid: 3360
+ components:
+ - type: Transform
+ pos: 13.5,18.5
+ parent: 2
+ - uid: 3361
+ components:
+ - type: Transform
+ pos: 11.5,17.5
+ parent: 2
+ - uid: 3362
+ components:
+ - type: Transform
+ pos: 13.5,17.5
+ parent: 2
+ - uid: 3363
+ components:
+ - type: Transform
+ pos: 13.5,20.5
+ parent: 2
+ - uid: 3364
+ components:
+ - type: Transform
+ pos: 13.5,21.5
+ parent: 2
+ - uid: 3365
+ components:
+ - type: Transform
+ pos: -14.5,-18.5
+ parent: 2
+ - uid: 3366
+ components:
+ - type: Transform
+ pos: -23.5,-12.5
+ parent: 2
+ - uid: 3367
+ components:
+ - type: Transform
+ pos: -6.5,15.5
+ parent: 2
+ - uid: 3368
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 2
+ - uid: 3369
+ components:
+ - type: Transform
+ pos: 13.5,19.5
+ parent: 2
+ - uid: 3370
+ components:
+ - type: Transform
+ pos: -15.5,-19.5
+ parent: 2
+ - uid: 3371
+ components:
+ - type: Transform
+ pos: -18.5,-19.5
+ parent: 2
+ - uid: 3372
+ components:
+ - type: Transform
+ pos: -14.5,-15.5
+ parent: 2
+ - uid: 3373
+ components:
+ - type: Transform
+ pos: -19.5,-19.5
+ parent: 2
+ - uid: 3374
+ components:
+ - type: Transform
+ pos: -19.5,-18.5
+ parent: 2
+ - uid: 3375
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 2
+ - uid: 3376
+ components:
+ - type: Transform
+ pos: -19.5,-16.5
+ parent: 2
+ - uid: 3377
+ components:
+ - type: Transform
+ pos: -19.5,-15.5
+ parent: 2
+ - uid: 3378
+ components:
+ - type: Transform
+ pos: -18.5,-15.5
+ parent: 2
+ - uid: 3379
+ components:
+ - type: Transform
+ pos: -17.5,-15.5
+ parent: 2
+ - uid: 3380
+ components:
+ - type: Transform
+ pos: -16.5,-15.5
+ parent: 2
+ - uid: 3381
+ components:
+ - type: Transform
+ pos: -15.5,-15.5
+ parent: 2
+ - uid: 3382
+ components:
+ - type: Transform
+ pos: -8.5,21.5
+ parent: 2
+ - uid: 3383
+ components:
+ - type: Transform
+ pos: -8.5,20.5
+ parent: 2
+ - uid: 3384
+ components:
+ - type: Transform
+ pos: -13.5,17.5
+ parent: 2
+ - uid: 3385
+ components:
+ - type: Transform
+ pos: -13.5,16.5
+ parent: 2
+ - uid: 3386
+ components:
+ - type: Transform
+ pos: -13.5,15.5
+ parent: 2
+ - uid: 3387
+ components:
+ - type: Transform
+ pos: -13.5,14.5
+ parent: 2
+ - uid: 3388
+ components:
+ - type: Transform
+ pos: -12.5,14.5
+ parent: 2
+ - uid: 3389
+ components:
+ - type: Transform
+ pos: -7.5,14.5
+ parent: 2
+ - uid: 3390
+ components:
+ - type: Transform
+ pos: -8.5,14.5
+ parent: 2
+ - uid: 3391
+ components:
+ - type: Transform
+ pos: -12.5,18.5
+ parent: 2
+ - uid: 3392
+ components:
+ - type: Transform
+ pos: -12.5,17.5
+ parent: 2
+ - uid: 3393
+ components:
+ - type: Transform
+ pos: -12.5,20.5
+ parent: 2
+ - uid: 3394
+ components:
+ - type: Transform
+ pos: -12.5,19.5
+ parent: 2
+ - uid: 3395
+ components:
+ - type: Transform
+ pos: -8.5,17.5
+ parent: 2
+ - uid: 3396
+ components:
+ - type: Transform
+ pos: -8.5,18.5
+ parent: 2
+ - uid: 3397
+ components:
+ - type: Transform
+ pos: -8.5,19.5
+ parent: 2
+ - uid: 3398
+ components:
+ - type: Transform
+ pos: -11.5,21.5
+ parent: 2
+ - uid: 3399
+ components:
+ - type: Transform
+ pos: -12.5,21.5
+ parent: 2
+ - uid: 3400
+ components:
+ - type: Transform
+ pos: -13.5,12.5
+ parent: 2
+ - uid: 3401
+ components:
+ - type: Transform
+ pos: -13.5,11.5
+ parent: 2
+ - uid: 3402
+ components:
+ - type: Transform
+ pos: -13.5,6.5
+ parent: 2
+ - uid: 3403
+ components:
+ - type: Transform
+ pos: -13.5,5.5
+ parent: 2
+ - uid: 3404
+ components:
+ - type: Transform
+ pos: -14.5,5.5
+ parent: 2
+ - uid: 3405
+ components:
+ - type: Transform
+ pos: -15.5,5.5
+ parent: 2
+ - uid: 3406
+ components:
+ - type: Transform
+ pos: -16.5,5.5
+ parent: 2
+ - uid: 3407
+ components:
+ - type: Transform
+ pos: -16.5,4.5
+ parent: 2
+ - uid: 3408
+ components:
+ - type: Transform
+ pos: -24.5,3.5
+ parent: 2
+ - uid: 3409
+ components:
+ - type: Transform
+ pos: -27.5,4.5
+ parent: 2
+ - uid: 3410
+ components:
+ - type: Transform
+ pos: -24.5,4.5
+ parent: 2
+ - uid: 3411
+ components:
+ - type: Transform
+ pos: -26.5,4.5
+ parent: 2
+ - uid: 3412
+ components:
+ - type: Transform
+ pos: -25.5,4.5
+ parent: 2
+ - uid: 3413
+ components:
+ - type: Transform
+ pos: -27.5,5.5
+ parent: 2
+ - uid: 3414
+ components:
+ - type: Transform
+ pos: -27.5,6.5
+ parent: 2
+ - uid: 3415
+ components:
+ - type: Transform
+ pos: -27.5,10.5
+ parent: 2
+ - uid: 3416
+ components:
+ - type: Transform
+ pos: -27.5,11.5
+ parent: 2
+ - uid: 3417
+ components:
+ - type: Transform
+ pos: -27.5,12.5
+ parent: 2
+ - uid: 3418
+ components:
+ - type: Transform
+ pos: -25.5,12.5
+ parent: 2
+ - uid: 3419
+ components:
+ - type: Transform
+ pos: -24.5,12.5
+ parent: 2
+ - uid: 3420
+ components:
+ - type: Transform
+ pos: -26.5,12.5
+ parent: 2
+ - uid: 3421
+ components:
+ - type: Transform
+ pos: -15.5,15.5
+ parent: 2
+ - uid: 3422
+ components:
+ - type: Transform
+ pos: -15.5,16.5
+ parent: 2
+ - uid: 3423
+ components:
+ - type: Transform
+ pos: -15.5,12.5
+ parent: 2
+ - uid: 3424
+ components:
+ - type: Transform
+ pos: -15.5,13.5
+ parent: 2
+ - uid: 3425
+ components:
+ - type: Transform
+ pos: -14.5,12.5
+ parent: 2
+ - uid: 3426
+ components:
+ - type: Transform
+ pos: -15.5,17.5
+ parent: 2
+ - uid: 3427
+ components:
+ - type: Transform
+ pos: -15.5,14.5
+ parent: 2
+ - uid: 3428
+ components:
+ - type: Transform
+ pos: -16.5,17.5
+ parent: 2
+ - uid: 3429
+ components:
+ - type: Transform
+ pos: -19.5,17.5
+ parent: 2
+ - uid: 3430
+ components:
+ - type: Transform
+ pos: -20.5,17.5
+ parent: 2
+ - uid: 3431
+ components:
+ - type: Transform
+ pos: -20.5,16.5
+ parent: 2
+ - uid: 3432
+ components:
+ - type: Transform
+ pos: -20.5,15.5
+ parent: 2
+ - uid: 3433
+ components:
+ - type: Transform
+ pos: -20.5,14.5
+ parent: 2
+ - uid: 3434
+ components:
+ - type: Transform
+ pos: -23.5,13.5
+ parent: 2
+ - uid: 3435
+ components:
+ - type: Transform
+ pos: -23.5,14.5
+ parent: 2
+ - uid: 3436
+ components:
+ - type: Transform
+ pos: -22.5,14.5
+ parent: 2
+ - uid: 3437
+ components:
+ - type: Transform
+ pos: -21.5,14.5
+ parent: 2
+ - uid: 3438
+ components:
+ - type: Transform
+ pos: -20.5,13.5
+ parent: 2
+ - uid: 3439
+ components:
+ - type: Transform
+ pos: -24.5,13.5
+ parent: 2
+ - uid: 3440
+ components:
+ - type: Transform
+ pos: -2.5,25.5
+ parent: 2
+ - uid: 3441
+ components:
+ - type: Transform
+ pos: 4.5,25.5
+ parent: 2
+ - uid: 3442
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 2
+ - uid: 3443
+ components:
+ - type: Transform
+ pos: -7.5,25.5
+ parent: 2
+ - uid: 3444
+ components:
+ - type: Transform
+ pos: -7.5,24.5
+ parent: 2
+ - uid: 3445
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 2
+ - uid: 3446
+ components:
+ - type: Transform
+ pos: -8.5,24.5
+ parent: 2
+ - uid: 3447
+ components:
+ - type: Transform
+ pos: -9.5,24.5
+ parent: 2
+ - uid: 3448
+ components:
+ - type: Transform
+ pos: 11.5,-3.5
+ parent: 2
+ - uid: 3449
+ components:
+ - type: Transform
+ pos: -28.5,4.5
+ parent: 2
+ - uid: 3450
+ components:
+ - type: Transform
+ pos: -29.5,4.5
+ parent: 2
+ - uid: 3451
+ components:
+ - type: Transform
+ pos: -28.5,-3.5
+ parent: 2
+ - uid: 3452
+ components:
+ - type: Transform
+ pos: -29.5,-3.5
+ parent: 2
+ - uid: 3453
+ components:
+ - type: Transform
+ pos: -29.5,-1.5
+ parent: 2
+ - uid: 3454
+ components:
+ - type: Transform
+ pos: -29.5,-0.5
+ parent: 2
+ - uid: 3455
+ components:
+ - type: Transform
+ pos: -29.5,0.5
+ parent: 2
+ - uid: 3456
+ components:
+ - type: Transform
+ pos: -29.5,3.5
+ parent: 2
+ - uid: 3457
+ components:
+ - type: Transform
+ pos: -29.5,-2.5
+ parent: 2
+ - uid: 3458
+ components:
+ - type: Transform
+ pos: -27.5,-3.5
+ parent: 2
+ - uid: 3459
+ components:
+ - type: Transform
+ pos: -27.5,-4.5
+ parent: 2
+ - uid: 3460
+ components:
+ - type: Transform
+ pos: -26.5,-4.5
+ parent: 2
+ - uid: 3461
+ components:
+ - type: Transform
+ pos: -0.5,25.5
+ parent: 2
+ - uid: 3462
+ components:
+ - type: Transform
+ pos: -15.5,18.5
+ parent: 2
+ - uid: 3463
+ components:
+ - type: Transform
+ pos: -11.5,24.5
+ parent: 2
+ - uid: 3464
+ components:
+ - type: Transform
+ pos: -10.5,24.5
+ parent: 2
+ - uid: 3465
+ components:
+ - type: Transform
+ pos: -12.5,24.5
+ parent: 2
+ - uid: 3466
+ components:
+ - type: Transform
+ pos: -15.5,19.5
+ parent: 2
+ - uid: 3467
+ components:
+ - type: Transform
+ pos: -15.5,20.5
+ parent: 2
+ - uid: 3468
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 2
+ - uid: 3469
+ components:
+ - type: Transform
+ pos: -7.5,26.5
+ parent: 2
+ - uid: 3470
+ components:
+ - type: Transform
+ pos: 12.5,-13.5
+ parent: 2
+ - uid: 3471
+ components:
+ - type: Transform
+ pos: 12.5,-11.5
+ parent: 2
+ - uid: 3472
+ components:
+ - type: Transform
+ pos: 11.5,-19.5
+ parent: 2
+ - uid: 3473
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 2
+ - uid: 3474
+ components:
+ - type: Transform
+ pos: -13.5,-11.5
+ parent: 2
+- proto: WallPlastitaniumIndestructible
+ entities:
+ - uid: 3475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
+ parent: 2
+ - uid: 3476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,26.5
+ parent: 2
+ - uid: 3477
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 2
+ - uid: 3478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,28.5
+ parent: 2
+ - uid: 3479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,27.5
+ parent: 2
+ - uid: 3480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,28.5
+ parent: 2
+ - uid: 3481
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 2
+ - uid: 3482
+ components:
+ - type: Transform
+ pos: 12.5,26.5
+ parent: 2
+ - uid: 3483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,26.5
+ parent: 2
+ - uid: 3484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,26.5
+ parent: 2
+ - uid: 3485
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 2
+ - uid: 3486
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 2
+- proto: WallRockBasalt
+ entities:
+ - uid: 3487
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 2
+ - uid: 3488
+ components:
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 2
+ - uid: 3489
+ components:
+ - type: Transform
+ pos: -13.5,-8.5
+ parent: 2
+ - uid: 3490
+ components:
+ - type: Transform
+ pos: -53.5,15.5
+ parent: 2
+ - uid: 3491
+ components:
+ - type: Transform
+ pos: -50.5,15.5
+ parent: 2
+ - uid: 3492
+ components:
+ - type: Transform
+ pos: -52.5,15.5
+ parent: 2
+ - uid: 3493
+ components:
+ - type: Transform
+ pos: -51.5,15.5
+ parent: 2
+ - uid: 3494
+ components:
+ - type: Transform
+ pos: -50.5,16.5
+ parent: 2
+ - uid: 3495
+ components:
+ - type: Transform
+ pos: -49.5,16.5
+ parent: 2
+ - uid: 3496
+ components:
+ - type: Transform
+ pos: -48.5,16.5
+ parent: 2
+ - uid: 3497
+ components:
+ - type: Transform
+ pos: -22.5,18.5
+ parent: 2
+ - uid: 3498
+ components:
+ - type: Transform
+ pos: -47.5,17.5
+ parent: 2
+ - uid: 3499
+ components:
+ - type: Transform
+ pos: -47.5,16.5
+ parent: 2
+ - uid: 3500
+ components:
+ - type: Transform
+ pos: -46.5,16.5
+ parent: 2
+ - uid: 3501
+ components:
+ - type: Transform
+ pos: -45.5,16.5
+ parent: 2
+ - uid: 3502
+ components:
+ - type: Transform
+ pos: -45.5,15.5
+ parent: 2
+ - uid: 3503
+ components:
+ - type: Transform
+ pos: -44.5,15.5
+ parent: 2
+ - uid: 3504
+ components:
+ - type: Transform
+ pos: -43.5,15.5
+ parent: 2
+ - uid: 3505
+ components:
+ - type: Transform
+ pos: -42.5,15.5
+ parent: 2
+ - uid: 3506
+ components:
+ - type: Transform
+ pos: -41.5,15.5
+ parent: 2
+ - uid: 3507
+ components:
+ - type: Transform
+ pos: -27.5,15.5
+ parent: 2
+ - uid: 3508
+ components:
+ - type: Transform
+ pos: -26.5,15.5
+ parent: 2
+ - uid: 3509
+ components:
+ - type: Transform
+ pos: -26.5,16.5
+ parent: 2
+ - uid: 3510
+ components:
+ - type: Transform
+ pos: -27.5,14.5
+ parent: 2
+ - uid: 3511
+ components:
+ - type: Transform
+ pos: -27.5,13.5
+ parent: 2
+ - uid: 3512
+ components:
+ - type: Transform
+ pos: -26.5,14.5
+ parent: 2
+ - uid: 3513
+ components:
+ - type: Transform
+ pos: -26.5,13.5
+ parent: 2
+ - uid: 3514
+ components:
+ - type: Transform
+ pos: -25.5,14.5
+ parent: 2
+ - uid: 3515
+ components:
+ - type: Transform
+ pos: -25.5,13.5
+ parent: 2
+ - uid: 3516
+ components:
+ - type: Transform
+ pos: -25.5,15.5
+ parent: 2
+ - uid: 3517
+ components:
+ - type: Transform
+ pos: -24.5,15.5
+ parent: 2
+ - uid: 3518
+ components:
+ - type: Transform
+ pos: -24.5,14.5
+ parent: 2
+ - uid: 3519
+ components:
+ - type: Transform
+ pos: -23.5,15.5
+ parent: 2
+ - uid: 3520
+ components:
+ - type: Transform
+ pos: -22.5,15.5
+ parent: 2
+ - uid: 3521
+ components:
+ - type: Transform
+ pos: -21.5,15.5
+ parent: 2
+ - uid: 3522
+ components:
+ - type: Transform
+ pos: -22.5,16.5
+ parent: 2
+ - uid: 3523
+ components:
+ - type: Transform
+ pos: -21.5,16.5
+ parent: 2
+ - uid: 3524
+ components:
+ - type: Transform
+ pos: -21.5,17.5
+ parent: 2
+ - uid: 3525
+ components:
+ - type: Transform
+ pos: -21.5,18.5
+ parent: 2
+ - uid: 3526
+ components:
+ - type: Transform
+ pos: -20.5,18.5
+ parent: 2
+ - uid: 3527
+ components:
+ - type: Transform
+ pos: -19.5,18.5
+ parent: 2
+ - uid: 3528
+ components:
+ - type: Transform
+ pos: -21.5,19.5
+ parent: 2
+ - uid: 3529
+ components:
+ - type: Transform
+ pos: -20.5,19.5
+ parent: 2
+ - uid: 3530
+ components:
+ - type: Transform
+ pos: -19.5,19.5
+ parent: 2
+ - uid: 3531
+ components:
+ - type: Transform
+ pos: -21.5,20.5
+ parent: 2
+ - uid: 3532
+ components:
+ - type: Transform
+ pos: -20.5,20.5
+ parent: 2
+ - uid: 3533
+ components:
+ - type: Transform
+ pos: -20.5,22.5
+ parent: 2
+ - uid: 3534
+ components:
+ - type: Transform
+ pos: -20.5,21.5
+ parent: 2
+ - uid: 3535
+ components:
+ - type: Transform
+ pos: -17.5,23.5
+ parent: 2
+ - uid: 3536
+ components:
+ - type: Transform
+ pos: -17.5,22.5
+ parent: 2
+ - uid: 3537
+ components:
+ - type: Transform
+ pos: -17.5,21.5
+ parent: 2
+ - uid: 3538
+ components:
+ - type: Transform
+ pos: -16.5,24.5
+ parent: 2
+ - uid: 3539
+ components:
+ - type: Transform
+ pos: -16.5,23.5
+ parent: 2
+ - uid: 3540
+ components:
+ - type: Transform
+ pos: -16.5,22.5
+ parent: 2
+ - uid: 3541
+ components:
+ - type: Transform
+ pos: -16.5,20.5
+ parent: 2
+ - uid: 3542
+ components:
+ - type: Transform
+ pos: -15.5,25.5
+ parent: 2
+ - uid: 3543
+ components:
+ - type: Transform
+ pos: -14.5,25.5
+ parent: 2
+ - uid: 3544
+ components:
+ - type: Transform
+ pos: -13.5,25.5
+ parent: 2
+ - uid: 3545
+ components:
+ - type: Transform
+ pos: -13.5,26.5
+ parent: 2
+ - uid: 3546
+ components:
+ - type: Transform
+ pos: -12.5,26.5
+ parent: 2
+ - uid: 3547
+ components:
+ - type: Transform
+ pos: -11.5,26.5
+ parent: 2
+ - uid: 3548
+ components:
+ - type: Transform
+ pos: -10.5,26.5
+ parent: 2
+ - uid: 3549
+ components:
+ - type: Transform
+ pos: -10.5,27.5
+ parent: 2
+ - uid: 3550
+ components:
+ - type: Transform
+ pos: -9.5,27.5
+ parent: 2
+ - uid: 3551
+ components:
+ - type: Transform
+ pos: -8.5,27.5
+ parent: 2
+ - uid: 3552
+ components:
+ - type: Transform
+ pos: -7.5,27.5
+ parent: 2
+ - uid: 3553
+ components:
+ - type: Transform
+ pos: -7.5,28.5
+ parent: 2
+ - uid: 3554
+ components:
+ - type: Transform
+ pos: -6.5,28.5
+ parent: 2
+ - uid: 3555
+ components:
+ - type: Transform
+ pos: -12.5,25.5
+ parent: 2
+ - uid: 3556
+ components:
+ - type: Transform
+ pos: -11.5,25.5
+ parent: 2
+ - uid: 3557
+ components:
+ - type: Transform
+ pos: -10.5,25.5
+ parent: 2
+ - uid: 3558
+ components:
+ - type: Transform
+ pos: -9.5,25.5
+ parent: 2
+ - uid: 3559
+ components:
+ - type: Transform
+ pos: -8.5,25.5
+ parent: 2
+ - uid: 3560
+ components:
+ - type: Transform
+ pos: -9.5,26.5
+ parent: 2
+ - uid: 3561
+ components:
+ - type: Transform
+ pos: -8.5,26.5
+ parent: 2
+ - uid: 3562
+ components:
+ - type: Transform
+ pos: -5.5,28.5
+ parent: 2
+ - uid: 3563
+ components:
+ - type: Transform
+ pos: -4.5,28.5
+ parent: 2
+ - uid: 3564
+ components:
+ - type: Transform
+ pos: -3.5,28.5
+ parent: 2
+ - uid: 3565
+ components:
+ - type: Transform
+ pos: -2.5,28.5
+ parent: 2
+ - uid: 3566
+ components:
+ - type: Transform
+ pos: -0.5,29.5
+ parent: 2
+ - uid: 3567
+ components:
+ - type: Transform
+ pos: 0.5,29.5
+ parent: 2
+ - uid: 3568
+ components:
+ - type: Transform
+ pos: 1.5,29.5
+ parent: 2
+ - uid: 3569
+ components:
+ - type: Transform
+ pos: 2.5,29.5
+ parent: 2
+ - uid: 3570
+ components:
+ - type: Transform
+ pos: 3.5,29.5
+ parent: 2
+ - uid: 3571
+ components:
+ - type: Transform
+ pos: 4.5,29.5
+ parent: 2
+ - uid: 3572
+ components:
+ - type: Transform
+ pos: -1.5,28.5
+ parent: 2
+ - uid: 3573
+ components:
+ - type: Transform
+ pos: -0.5,28.5
+ parent: 2
+ - uid: 3574
+ components:
+ - type: Transform
+ pos: 0.5,28.5
+ parent: 2
+ - uid: 3575
+ components:
+ - type: Transform
+ pos: 3.5,28.5
+ parent: 2
+ - uid: 3576
+ components:
+ - type: Transform
+ pos: 5.5,28.5
+ parent: 2
+ - uid: 3577
+ components:
+ - type: Transform
+ pos: 6.5,28.5
+ parent: 2
+ - uid: 3578
+ components:
+ - type: Transform
+ pos: 4.5,28.5
+ parent: 2
+ - uid: 3579
+ components:
+ - type: Transform
+ pos: 7.5,28.5
+ parent: 2
+ - uid: 3580
+ components:
+ - type: Transform
+ pos: 7.5,27.5
+ parent: 2
+ - uid: 3581
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 2
+ - uid: 3582
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 2
+ - uid: 3583
+ components:
+ - type: Transform
+ pos: 14.5,26.5
+ parent: 2
+ - uid: 3584
+ components:
+ - type: Transform
+ pos: 9.5,25.5
+ parent: 2
+ - uid: 3585
+ components:
+ - type: Transform
+ pos: 11.5,25.5
+ parent: 2
+ - uid: 3586
+ components:
+ - type: Transform
+ pos: 12.5,25.5
+ parent: 2
+ - uid: 3587
+ components:
+ - type: Transform
+ pos: 13.5,25.5
+ parent: 2
+ - uid: 3588
+ components:
+ - type: Transform
+ pos: 14.5,25.5
+ parent: 2
+ - uid: 3589
+ components:
+ - type: Transform
+ pos: 15.5,24.5
+ parent: 2
+ - uid: 3590
+ components:
+ - type: Transform
+ pos: 16.5,24.5
+ parent: 2
+ - uid: 3591
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 2
+ - uid: 3592
+ components:
+ - type: Transform
+ pos: 17.5,23.5
+ parent: 2
+ - uid: 3593
+ components:
+ - type: Transform
+ pos: 18.5,23.5
+ parent: 2
+ - uid: 3594
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 2
+ - uid: 3595
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 2
+ - uid: 3596
+ components:
+ - type: Transform
+ pos: 18.5,21.5
+ parent: 2
+ - uid: 3597
+ components:
+ - type: Transform
+ pos: 19.5,21.5
+ parent: 2
+ - uid: 3598
+ components:
+ - type: Transform
+ pos: 19.5,20.5
+ parent: 2
+ - uid: 3599
+ components:
+ - type: Transform
+ pos: 19.5,19.5
+ parent: 2
+ - uid: 3600
+ components:
+ - type: Transform
+ pos: 19.5,18.5
+ parent: 2
+ - uid: 3601
+ components:
+ - type: Transform
+ pos: 19.5,17.5
+ parent: 2
+ - uid: 3602
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 2
+ - uid: 3603
+ components:
+ - type: Transform
+ pos: 20.5,17.5
+ parent: 2
+ - uid: 3604
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 2
+ - uid: 3605
+ components:
+ - type: Transform
+ pos: 20.5,15.5
+ parent: 2
+ - uid: 3606
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 2
+ - uid: 3607
+ components:
+ - type: Transform
+ pos: 20.5,13.5
+ parent: 2
+ - uid: 3608
+ components:
+ - type: Transform
+ pos: 20.5,12.5
+ parent: 2
+ - uid: 3609
+ components:
+ - type: Transform
+ pos: 20.5,11.5
+ parent: 2
+ - uid: 3610
+ components:
+ - type: Transform
+ pos: 21.5,11.5
+ parent: 2
+ - uid: 3611
+ components:
+ - type: Transform
+ pos: 21.5,10.5
+ parent: 2
+ - uid: 3612
+ components:
+ - type: Transform
+ pos: 21.5,9.5
+ parent: 2
+ - uid: 3613
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 2
+ - uid: 3614
+ components:
+ - type: Transform
+ pos: 21.5,7.5
+ parent: 2
+ - uid: 3615
+ components:
+ - type: Transform
+ pos: 21.5,6.5
+ parent: 2
+ - uid: 3616
+ components:
+ - type: Transform
+ pos: 21.5,5.5
+ parent: 2
+ - uid: 3617
+ components:
+ - type: Transform
+ pos: 21.5,4.5
+ parent: 2
+ - uid: 3618
+ components:
+ - type: Transform
+ pos: 21.5,3.5
+ parent: 2
+ - uid: 3619
+ components:
+ - type: Transform
+ pos: 20.5,9.5
+ parent: 2
+ - uid: 3620
+ components:
+ - type: Transform
+ pos: 19.5,9.5
+ parent: 2
+ - uid: 3621
+ components:
+ - type: Transform
+ pos: 20.5,10.5
+ parent: 2
+ - uid: 3622
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 2
+ - uid: 3623
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 2
+ - uid: 3624
+ components:
+ - type: Transform
+ pos: 19.5,6.5
+ parent: 2
+ - uid: 3625
+ components:
+ - type: Transform
+ pos: 19.5,5.5
+ parent: 2
+ - uid: 3626
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 2
+ - uid: 3627
+ components:
+ - type: Transform
+ pos: 19.5,3.5
+ parent: 2
+ - uid: 3628
+ components:
+ - type: Transform
+ pos: 19.5,2.5
+ parent: 2
+ - uid: 3629
+ components:
+ - type: Transform
+ pos: 19.5,1.5
+ parent: 2
+ - uid: 3630
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 2
+ - uid: 3631
+ components:
+ - type: Transform
+ pos: 20.5,7.5
+ parent: 2
+ - uid: 3632
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 2
+ - uid: 3633
+ components:
+ - type: Transform
+ pos: 20.5,5.5
+ parent: 2
+ - uid: 3634
+ components:
+ - type: Transform
+ pos: 20.5,4.5
+ parent: 2
+ - uid: 3635
+ components:
+ - type: Transform
+ pos: 20.5,3.5
+ parent: 2
+ - uid: 3636
+ components:
+ - type: Transform
+ pos: 20.5,2.5
+ parent: 2
+ - uid: 3637
+ components:
+ - type: Transform
+ pos: 20.5,1.5
+ parent: 2
+ - uid: 3638
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 2
+ - uid: 3639
+ components:
+ - type: Transform
+ pos: 21.5,1.5
+ parent: 2
+ - uid: 3640
+ components:
+ - type: Transform
+ pos: 21.5,0.5
+ parent: 2
+ - uid: 3641
+ components:
+ - type: Transform
+ pos: 21.5,-0.5
+ parent: 2
+ - uid: 3642
+ components:
+ - type: Transform
+ pos: 21.5,-1.5
+ parent: 2
+ - uid: 3643
+ components:
+ - type: Transform
+ pos: 21.5,-2.5
+ parent: 2
+ - uid: 3644
+ components:
+ - type: Transform
+ pos: 21.5,-3.5
+ parent: 2
+ - uid: 3645
+ components:
+ - type: Transform
+ pos: 19.5,0.5
+ parent: 2
+ - uid: 3646
+ components:
+ - type: Transform
+ pos: 20.5,0.5
+ parent: 2
+ - uid: 3647
+ components:
+ - type: Transform
+ pos: 19.5,-0.5
+ parent: 2
+ - uid: 3648
+ components:
+ - type: Transform
+ pos: 19.5,-1.5
+ parent: 2
+ - uid: 3649
+ components:
+ - type: Transform
+ pos: 19.5,-2.5
+ parent: 2
+ - uid: 3650
+ components:
+ - type: Transform
+ pos: 20.5,-0.5
+ parent: 2
+ - uid: 3651
+ components:
+ - type: Transform
+ pos: 20.5,-1.5
+ parent: 2
+ - uid: 3652
+ components:
+ - type: Transform
+ pos: 20.5,-2.5
+ parent: 2
+ - uid: 3653
+ components:
+ - type: Transform
+ pos: 20.5,-3.5
+ parent: 2
+ - uid: 3654
+ components:
+ - type: Transform
+ pos: 20.5,-4.5
+ parent: 2
+ - uid: 3655
+ components:
+ - type: Transform
+ pos: 20.5,-5.5
+ parent: 2
+ - uid: 3656
+ components:
+ - type: Transform
+ pos: 20.5,-6.5
+ parent: 2
+ - uid: 3657
+ components:
+ - type: Transform
+ pos: 16.5,-3.5
+ parent: 2
+ - uid: 3658
+ components:
+ - type: Transform
+ pos: 17.5,-3.5
+ parent: 2
+ - uid: 3659
+ components:
+ - type: Transform
+ pos: 18.5,-3.5
+ parent: 2
+ - uid: 3660
+ components:
+ - type: Transform
+ pos: 19.5,-3.5
+ parent: 2
+ - uid: 3661
+ components:
+ - type: Transform
+ pos: 17.5,-4.5
+ parent: 2
+ - uid: 3662
+ components:
+ - type: Transform
+ pos: 19.5,-4.5
+ parent: 2
+ - uid: 3663
+ components:
+ - type: Transform
+ pos: 18.5,-4.5
+ parent: 2
+ - uid: 3664
+ components:
+ - type: Transform
+ pos: 19.5,-5.5
+ parent: 2
+ - uid: 3665
+ components:
+ - type: Transform
+ pos: 19.5,-6.5
+ parent: 2
+ - uid: 3666
+ components:
+ - type: Transform
+ pos: 18.5,-5.5
+ parent: 2
+ - uid: 3667
+ components:
+ - type: Transform
+ pos: 18.5,-6.5
+ parent: 2
+ - uid: 3668
+ components:
+ - type: Transform
+ pos: 18.5,-8.5
+ parent: 2
+ - uid: 3669
+ components:
+ - type: Transform
+ pos: 15.5,-3.5
+ parent: 2
+ - uid: 3670
+ components:
+ - type: Transform
+ pos: 14.5,-3.5
+ parent: 2
+ - uid: 3671
+ components:
+ - type: Transform
+ pos: 13.5,-3.5
+ parent: 2
+ - uid: 3672
+ components:
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 2
+ - uid: 3673
+ components:
+ - type: Transform
+ pos: 16.5,-4.5
+ parent: 2
+ - uid: 3674
+ components:
+ - type: Transform
+ pos: 17.5,-5.5
+ parent: 2
+ - uid: 3675
+ components:
+ - type: Transform
+ pos: 17.5,-9.5
+ parent: 2
+ - uid: 3676
+ components:
+ - type: Transform
+ pos: 17.5,-8.5
+ parent: 2
+ - uid: 3677
+ components:
+ - type: Transform
+ pos: 16.5,-10.5
+ parent: 2
+ - uid: 3678
+ components:
+ - type: Transform
+ pos: 16.5,-9.5
+ parent: 2
+ - uid: 3679
+ components:
+ - type: Transform
+ pos: 15.5,-10.5
+ parent: 2
+ - uid: 3680
+ components:
+ - type: Transform
+ pos: 15.5,-9.5
+ parent: 2
+ - uid: 3681
+ components:
+ - type: Transform
+ pos: 14.5,-12.5
+ parent: 2
+ - uid: 3682
+ components:
+ - type: Transform
+ pos: 14.5,-11.5
+ parent: 2
+ - uid: 3683
+ components:
+ - type: Transform
+ pos: 13.5,-13.5
+ parent: 2
+ - uid: 3684
+ components:
+ - type: Transform
+ pos: 13.5,-12.5
+ parent: 2
+ - uid: 3685
+ components:
+ - type: Transform
+ pos: 12.5,-12.5
+ parent: 2
+ - uid: 3686
+ components:
+ - type: Transform
+ pos: 13.5,-11.5
+ parent: 2
+ - uid: 3687
+ components:
+ - type: Transform
+ pos: 11.5,-20.5
+ parent: 2
+ - uid: 3688
+ components:
+ - type: Transform
+ pos: 10.5,-19.5
+ parent: 2
+ - uid: 3689
+ components:
+ - type: Transform
+ pos: 10.5,-20.5
+ parent: 2
+ - uid: 3690
+ components:
+ - type: Transform
+ pos: 10.5,-21.5
+ parent: 2
+ - uid: 3691
+ components:
+ - type: Transform
+ pos: 10.5,-22.5
+ parent: 2
+ - uid: 3692
+ components:
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 2
+ - uid: 3693
+ components:
+ - type: Transform
+ pos: 8.5,-22.5
+ parent: 2
+ - uid: 3694
+ components:
+ - type: Transform
+ pos: 7.5,-22.5
+ parent: 2
+ - uid: 3695
+ components:
+ - type: Transform
+ pos: 6.5,-22.5
+ parent: 2
+ - uid: 3696
+ components:
+ - type: Transform
+ pos: 4.5,-22.5
+ parent: 2
+ - uid: 3697
+ components:
+ - type: Transform
+ pos: 3.5,-22.5
+ parent: 2
+ - uid: 3698
+ components:
+ - type: Transform
+ pos: 3.5,-23.5
+ parent: 2
+ - uid: 3699
+ components:
+ - type: Transform
+ pos: 2.5,-23.5
+ parent: 2
+ - uid: 3700
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
+ parent: 2
+ - uid: 3701
+ components:
+ - type: Transform
+ pos: 0.5,-23.5
+ parent: 2
+ - uid: 3702
+ components:
+ - type: Transform
+ pos: 2.5,-22.5
+ parent: 2
+ - uid: 3703
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 2
+ - uid: 3704
+ components:
+ - type: Transform
+ pos: -0.5,-19.5
+ parent: 2
+ - uid: 3705
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 3706
+ components:
+ - type: Transform
+ pos: 1.5,-19.5
+ parent: 2
+ - uid: 3707
+ components:
+ - type: Transform
+ pos: 2.5,-19.5
+ parent: 2
+ - uid: 3708
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+ - uid: 3709
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 2
+ - uid: 3710
+ components:
+ - type: Transform
+ pos: -1.5,-23.5
+ parent: 2
+ - uid: 3711
+ components:
+ - type: Transform
+ pos: -2.5,-23.5
+ parent: 2
+ - uid: 3712
+ components:
+ - type: Transform
+ pos: -3.5,-23.5
+ parent: 2
+ - uid: 3713
+ components:
+ - type: Transform
+ pos: -2.5,-24.5
+ parent: 2
+ - uid: 3714
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 2
+ - uid: 3715
+ components:
+ - type: Transform
+ pos: -4.5,-24.5
+ parent: 2
+ - uid: 3716
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - uid: 3717
+ components:
+ - type: Transform
+ pos: -6.5,-24.5
+ parent: 2
+ - uid: 3718
+ components:
+ - type: Transform
+ pos: -4.5,-25.5
+ parent: 2
+ - uid: 3719
+ components:
+ - type: Transform
+ pos: -5.5,-25.5
+ parent: 2
+ - uid: 3720
+ components:
+ - type: Transform
+ pos: -6.5,-25.5
+ parent: 2
+ - uid: 3721
+ components:
+ - type: Transform
+ pos: -7.5,-25.5
+ parent: 2
+ - uid: 3722
+ components:
+ - type: Transform
+ pos: -8.5,-25.5
+ parent: 2
+ - uid: 3723
+ components:
+ - type: Transform
+ pos: -9.5,-25.5
+ parent: 2
+ - uid: 3724
+ components:
+ - type: Transform
+ pos: -10.5,-25.5
+ parent: 2
+ - uid: 3725
+ components:
+ - type: Transform
+ pos: -11.5,-25.5
+ parent: 2
+ - uid: 3726
+ components:
+ - type: Transform
+ pos: -12.5,-25.5
+ parent: 2
+ - uid: 3727
+ components:
+ - type: Transform
+ pos: -13.5,-25.5
+ parent: 2
+ - uid: 3728
+ components:
+ - type: Transform
+ pos: -13.5,-24.5
+ parent: 2
+ - uid: 3729
+ components:
+ - type: Transform
+ pos: -12.5,-24.5
+ parent: 2
+ - uid: 3730
+ components:
+ - type: Transform
+ pos: -11.5,-24.5
+ parent: 2
+ - uid: 3731
+ components:
+ - type: Transform
+ pos: -10.5,-24.5
+ parent: 2
+ - uid: 3732
+ components:
+ - type: Transform
+ pos: -8.5,-24.5
+ parent: 2
+ - uid: 3733
+ components:
+ - type: Transform
+ pos: -7.5,-24.5
+ parent: 2
+ - uid: 3734
+ components:
+ - type: Transform
+ pos: -9.5,-24.5
+ parent: 2
+ - uid: 3735
+ components:
+ - type: Transform
+ pos: -9.5,-23.5
+ parent: 2
+ - uid: 3736
+ components:
+ - type: Transform
+ pos: -12.5,-23.5
+ parent: 2
+ - uid: 3737
+ components:
+ - type: Transform
+ pos: -11.5,-23.5
+ parent: 2
+ - uid: 3738
+ components:
+ - type: Transform
+ pos: -10.5,-23.5
+ parent: 2
+ - uid: 3739
+ components:
+ - type: Transform
+ pos: -8.5,-23.5
+ parent: 2
+ - uid: 3740
+ components:
+ - type: Transform
+ pos: -7.5,-23.5
+ parent: 2
+ - uid: 3741
+ components:
+ - type: Transform
+ pos: -6.5,-23.5
+ parent: 2
+ - uid: 3742
+ components:
+ - type: Transform
+ pos: -7.5,-22.5
+ parent: 2
+ - uid: 3743
+ components:
+ - type: Transform
+ pos: -8.5,-22.5
+ parent: 2
+ - uid: 3744
+ components:
+ - type: Transform
+ pos: -9.5,-22.5
+ parent: 2
+ - uid: 3745
+ components:
+ - type: Transform
+ pos: -14.5,-24.5
+ parent: 2
+ - uid: 3746
+ components:
+ - type: Transform
+ pos: -15.5,-24.5
+ parent: 2
+ - uid: 3747
+ components:
+ - type: Transform
+ pos: -16.5,-24.5
+ parent: 2
+ - uid: 3748
+ components:
+ - type: Transform
+ pos: -16.5,-23.5
+ parent: 2
+ - uid: 3749
+ components:
+ - type: Transform
+ pos: -17.5,-23.5
+ parent: 2
+ - uid: 3750
+ components:
+ - type: Transform
+ pos: -18.5,-23.5
+ parent: 2
+ - uid: 3751
+ components:
+ - type: Transform
+ pos: -16.5,-22.5
+ parent: 2
+ - uid: 3752
+ components:
+ - type: Transform
+ pos: -17.5,-22.5
+ parent: 2
+ - uid: 3753
+ components:
+ - type: Transform
+ pos: -19.5,-22.5
+ parent: 2
+ - uid: 3754
+ components:
+ - type: Transform
+ pos: -20.5,-22.5
+ parent: 2
+ - uid: 3755
+ components:
+ - type: Transform
+ pos: -21.5,-22.5
+ parent: 2
+ - uid: 3756
+ components:
+ - type: Transform
+ pos: -22.5,-21.5
+ parent: 2
+ - uid: 3757
+ components:
+ - type: Transform
+ pos: -22.5,-20.5
+ parent: 2
+ - uid: 3758
+ components:
+ - type: Transform
+ pos: -23.5,-20.5
+ parent: 2
+ - uid: 3759
+ components:
+ - type: Transform
+ pos: -22.5,-19.5
+ parent: 2
+ - uid: 3760
+ components:
+ - type: Transform
+ pos: -23.5,-19.5
+ parent: 2
+ - uid: 3761
+ components:
+ - type: Transform
+ pos: -22.5,-18.5
+ parent: 2
+ - uid: 3762
+ components:
+ - type: Transform
+ pos: -23.5,-18.5
+ parent: 2
+ - uid: 3763
+ components:
+ - type: Transform
+ pos: -24.5,-18.5
+ parent: 2
+ - uid: 3764
+ components:
+ - type: Transform
+ pos: -24.5,-17.5
+ parent: 2
+ - uid: 3765
+ components:
+ - type: Transform
+ pos: -23.5,-17.5
+ parent: 2
+ - uid: 3766
+ components:
+ - type: Transform
+ pos: -25.5,-16.5
+ parent: 2
+ - uid: 3767
+ components:
+ - type: Transform
+ pos: -25.5,-15.5
+ parent: 2
+ - uid: 3768
+ components:
+ - type: Transform
+ pos: -26.5,-15.5
+ parent: 2
+ - uid: 3769
+ components:
+ - type: Transform
+ pos: -26.5,-14.5
+ parent: 2
+ - uid: 3770
+ components:
+ - type: Transform
+ pos: -28.5,-14.5
+ parent: 2
+ - uid: 3771
+ components:
+ - type: Transform
+ pos: -29.5,-14.5
+ parent: 2
+ - uid: 3772
+ components:
+ - type: Transform
+ pos: -27.5,-14.5
+ parent: 2
+ - uid: 3773
+ components:
+ - type: Transform
+ pos: -29.5,-13.5
+ parent: 2
+ - uid: 3774
+ components:
+ - type: Transform
+ pos: -29.5,-12.5
+ parent: 2
+ - uid: 3775
+ components:
+ - type: Transform
+ pos: -30.5,-12.5
+ parent: 2
+ - uid: 3776
+ components:
+ - type: Transform
+ pos: -30.5,-11.5
+ parent: 2
+ - uid: 3777
+ components:
+ - type: Transform
+ pos: -31.5,-11.5
+ parent: 2
+ - uid: 3778
+ components:
+ - type: Transform
+ pos: -32.5,-11.5
+ parent: 2
+ - uid: 3779
+ components:
+ - type: Transform
+ pos: -34.5,-11.5
+ parent: 2
+ - uid: 3780
+ components:
+ - type: Transform
+ pos: -33.5,-11.5
+ parent: 2
+ - uid: 3781
+ components:
+ - type: Transform
+ pos: -28.5,14.5
+ parent: 2
+ - uid: 3782
+ components:
+ - type: Transform
+ pos: -29.5,14.5
+ parent: 2
+ - uid: 3783
+ components:
+ - type: Transform
+ pos: -38.5,-11.5
+ parent: 2
+ - uid: 3784
+ components:
+ - type: Transform
+ pos: -39.5,-11.5
+ parent: 2
+ - uid: 3785
+ components:
+ - type: Transform
+ pos: -40.5,-11.5
+ parent: 2
+ - uid: 3786
+ components:
+ - type: Transform
+ pos: -41.5,-11.5
+ parent: 2
+ - uid: 3787
+ components:
+ - type: Transform
+ pos: -42.5,-11.5
+ parent: 2
+ - uid: 3788
+ components:
+ - type: Transform
+ pos: -43.5,-11.5
+ parent: 2
+ - uid: 3789
+ components:
+ - type: Transform
+ pos: -43.5,-12.5
+ parent: 2
+ - uid: 3790
+ components:
+ - type: Transform
+ pos: -44.5,-12.5
+ parent: 2
+ - uid: 3791
+ components:
+ - type: Transform
+ pos: -45.5,-12.5
+ parent: 2
+ - uid: 3792
+ components:
+ - type: Transform
+ pos: -46.5,-12.5
+ parent: 2
+ - uid: 3793
+ components:
+ - type: Transform
+ pos: -47.5,-12.5
+ parent: 2
+ - uid: 3794
+ components:
+ - type: Transform
+ pos: -47.5,-11.5
+ parent: 2
+ - uid: 3795
+ components:
+ - type: Transform
+ pos: -48.5,-11.5
+ parent: 2
+ - uid: 3796
+ components:
+ - type: Transform
+ pos: -49.5,-11.5
+ parent: 2
+ - uid: 3797
+ components:
+ - type: Transform
+ pos: -50.5,-11.5
+ parent: 2
+ - uid: 3798
+ components:
+ - type: Transform
+ pos: -51.5,-11.5
+ parent: 2
+ - uid: 3799
+ components:
+ - type: Transform
+ pos: -54.5,-11.5
+ parent: 2
+ - uid: 3800
+ components:
+ - type: Transform
+ pos: -55.5,-11.5
+ parent: 2
+ - uid: 3801
+ components:
+ - type: Transform
+ pos: -56.5,-11.5
+ parent: 2
+ - uid: 3802
+ components:
+ - type: Transform
+ pos: -57.5,-11.5
+ parent: 2
+ - uid: 3803
+ components:
+ - type: Transform
+ pos: -58.5,-11.5
+ parent: 2
+ - uid: 3804
+ components:
+ - type: Transform
+ pos: -29.5,5.5
+ parent: 2
+ - uid: 3805
+ components:
+ - type: Transform
+ pos: -28.5,5.5
+ parent: 2
+ - uid: 3806
+ components:
+ - type: Transform
+ pos: -28.5,6.5
+ parent: 2
+ - uid: 3807
+ components:
+ - type: Transform
+ pos: -30.5,5.5
+ parent: 2
+ - uid: 3808
+ components:
+ - type: Transform
+ pos: -30.5,4.5
+ parent: 2
+ - uid: 3809
+ components:
+ - type: Transform
+ pos: -30.5,3.5
+ parent: 2
+ - uid: 3810
+ components:
+ - type: Transform
+ pos: -31.5,5.5
+ parent: 2
+ - uid: 3811
+ components:
+ - type: Transform
+ pos: -31.5,4.5
+ parent: 2
+ - uid: 3812
+ components:
+ - type: Transform
+ pos: -30.5,-1.5
+ parent: 2
+ - uid: 3813
+ components:
+ - type: Transform
+ pos: -30.5,-2.5
+ parent: 2
+ - uid: 3814
+ components:
+ - type: Transform
+ pos: -30.5,-3.5
+ parent: 2
+ - uid: 3815
+ components:
+ - type: Transform
+ pos: -31.5,-2.5
+ parent: 2
+ - uid: 3816
+ components:
+ - type: Transform
+ pos: -31.5,-3.5
+ parent: 2
+ - uid: 3817
+ components:
+ - type: Transform
+ pos: -30.5,-4.5
+ parent: 2
+ - uid: 3818
+ components:
+ - type: Transform
+ pos: -29.5,-4.5
+ parent: 2
+ - uid: 3819
+ components:
+ - type: Transform
+ pos: -28.5,-4.5
+ parent: 2
+ - uid: 3820
+ components:
+ - type: Transform
+ pos: -25.5,-9.5
+ parent: 2
+ - uid: 3821
+ components:
+ - type: Transform
+ pos: -25.5,-10.5
+ parent: 2
+ - uid: 3822
+ components:
+ - type: Transform
+ pos: -25.5,-11.5
+ parent: 2
+ - uid: 3823
+ components:
+ - type: Transform
+ pos: -24.5,-11.5
+ parent: 2
+ - uid: 3824
+ components:
+ - type: Transform
+ pos: -26.5,-8.5
+ parent: 2
+ - uid: 3825
+ components:
+ - type: Transform
+ pos: -26.5,-9.5
+ parent: 2
+ - uid: 3826
+ components:
+ - type: Transform
+ pos: -27.5,-8.5
+ parent: 2
+ - uid: 3827
+ components:
+ - type: Transform
+ pos: -28.5,-8.5
+ parent: 2
+ - uid: 3828
+ components:
+ - type: Transform
+ pos: -27.5,-9.5
+ parent: 2
+ - uid: 3829
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 2
+ - uid: 3830
+ components:
+ - type: Transform
+ pos: -6.5,-3.5
+ parent: 2
+ - uid: 3831
+ components:
+ - type: Transform
+ pos: -6.5,-2.5
+ parent: 2
+ - uid: 3832
+ components:
+ - type: Transform
+ pos: -6.5,-4.5
+ parent: 2
+ - uid: 3833
+ components:
+ - type: Transform
+ pos: -4.5,-4.5
+ parent: 2
+ - uid: 3834
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - uid: 3835
+ components:
+ - type: Transform
+ pos: -5.5,-4.5
+ parent: 2
+ - uid: 3836
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 2
+ - uid: 3837
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 2
+ - uid: 3838
+ components:
+ - type: Transform
+ pos: 16.5,19.5
+ parent: 2
+ - uid: 3839
+ components:
+ - type: Transform
+ pos: 16.5,20.5
+ parent: 2
+ - uid: 3840
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 2
+ - uid: 3841
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 2
+ - uid: 3842
+ components:
+ - type: Transform
+ pos: 5.5,26.5
+ parent: 2
+ - uid: 3843
+ components:
+ - type: Transform
+ pos: 6.5,25.5
+ parent: 2
+ - uid: 3844
+ components:
+ - type: Transform
+ pos: -14.5,-10.5
+ parent: 2
+ - uid: 3845
+ components:
+ - type: Transform
+ pos: -4.5,-21.5
+ parent: 2
+ - uid: 3846
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 3847
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 3848
+ components:
+ - type: Transform
+ pos: -1.5,-21.5
+ parent: 2
+ - uid: 3849
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 2
+ - uid: 3850
+ components:
+ - type: Transform
+ pos: -7.5,-3.5
+ parent: 2
+ - uid: 3851
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 2
+ - uid: 3852
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 2
+ - uid: 3853
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 2
+ - uid: 3854
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 2
+ - uid: 3855
+ components:
+ - type: Transform
+ pos: -7.5,8.5
+ parent: 2
+ - uid: 3856
+ components:
+ - type: Transform
+ pos: -7.5,9.5
+ parent: 2
+ - uid: 3857
+ components:
+ - type: Transform
+ pos: -6.5,9.5
+ parent: 2
+ - uid: 3858
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 2
+ - uid: 3859
+ components:
+ - type: Transform
+ pos: -15.5,-1.5
+ parent: 2
+ - uid: 3860
+ components:
+ - type: Transform
+ pos: -15.5,-2.5
+ parent: 2
+ - uid: 3861
+ components:
+ - type: Transform
+ pos: -14.5,-1.5
+ parent: 2
+ - uid: 3862
+ components:
+ - type: Transform
+ pos: -13.5,-1.5
+ parent: 2
+ - uid: 3863
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 2
+ - uid: 3864
+ components:
+ - type: Transform
+ pos: 4.5,21.5
+ parent: 2
+ - uid: 3865
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 2
+ - uid: 3866
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 2
+ - uid: 3867
+ components:
+ - type: Transform
+ pos: 4.5,18.5
+ parent: 2
+ - uid: 3868
+ components:
+ - type: Transform
+ pos: -13.5,19.5
+ parent: 2
+ - uid: 3869
+ components:
+ - type: Transform
+ pos: -13.5,18.5
+ parent: 2
+ - uid: 3870
+ components:
+ - type: Transform
+ pos: -28.5,11.5
+ parent: 2
+ - uid: 3871
+ components:
+ - type: Transform
+ pos: -29.5,11.5
+ parent: 2
+ - uid: 3872
+ components:
+ - type: Transform
+ pos: -30.5,11.5
+ parent: 2
+ - uid: 3873
+ components:
+ - type: Transform
+ pos: -30.5,10.5
+ parent: 2
+ - uid: 3874
+ components:
+ - type: Transform
+ pos: -28.5,12.5
+ parent: 2
+ - uid: 3875
+ components:
+ - type: Transform
+ pos: -29.5,12.5
+ parent: 2
+ - uid: 3876
+ components:
+ - type: Transform
+ pos: -28.5,13.5
+ parent: 2
+ - uid: 3877
+ components:
+ - type: Transform
+ pos: -31.5,10.5
+ parent: 2
+ - uid: 3878
+ components:
+ - type: Transform
+ pos: -28.5,-12.5
+ parent: 2
+ - uid: 3879
+ components:
+ - type: Transform
+ pos: -28.5,-11.5
+ parent: 2
+ - uid: 3880
+ components:
+ - type: Transform
+ pos: -28.5,-10.5
+ parent: 2
+ - uid: 3881
+ components:
+ - type: Transform
+ pos: -28.5,-9.5
+ parent: 2
+ - uid: 3882
+ components:
+ - type: Transform
+ pos: -27.5,-11.5
+ parent: 2
+ - uid: 3883
+ components:
+ - type: Transform
+ pos: -27.5,-10.5
+ parent: 2
+ - uid: 3884
+ components:
+ - type: Transform
+ pos: -29.5,-11.5
+ parent: 2
+ - uid: 3885
+ components:
+ - type: Transform
+ pos: -29.5,-10.5
+ parent: 2
+ - uid: 3886
+ components:
+ - type: Transform
+ pos: -29.5,-9.5
+ parent: 2
+ - uid: 3887
+ components:
+ - type: Transform
+ pos: -30.5,-10.5
+ parent: 2
+ - uid: 3888
+ components:
+ - type: Transform
+ pos: -31.5,-10.5
+ parent: 2
+ - uid: 3889
+ components:
+ - type: Transform
+ pos: -26.5,-10.5
+ parent: 2
+ - uid: 3890
+ components:
+ - type: Transform
+ pos: -31.5,-1.5
+ parent: 2
+ - uid: 3891
+ components:
+ - type: Transform
+ pos: -46.5,15.5
+ parent: 2
+ - uid: 3892
+ components:
+ - type: Transform
+ pos: -48.5,15.5
+ parent: 2
+ - uid: 3893
+ components:
+ - type: Transform
+ pos: -30.5,-0.5
+ parent: 2
+ - uid: 3894
+ components:
+ - type: Transform
+ pos: -30.5,0.5
+ parent: 2
+ - uid: 3895
+ components:
+ - type: Transform
+ pos: -31.5,-0.5
+ parent: 2
+ - uid: 3896
+ components:
+ - type: Transform
+ pos: -47.5,15.5
+ parent: 2
+ - uid: 3897
+ components:
+ - type: Transform
+ pos: -49.5,15.5
+ parent: 2
+ - uid: 3898
+ components:
+ - type: Transform
+ pos: -52.5,-11.5
+ parent: 2
+ - uid: 3899
+ components:
+ - type: Transform
+ pos: -53.5,-11.5
+ parent: 2
+ - uid: 3900
+ components:
+ - type: Transform
+ pos: -46.5,-11.5
+ parent: 2
+ - uid: 3901
+ components:
+ - type: Transform
+ pos: -45.5,-11.5
+ parent: 2
+ - uid: 3902
+ components:
+ - type: Transform
+ pos: -44.5,-11.5
+ parent: 2
+- proto: WallRockBasaltDiamond
+ entities:
+ - uid: 3903
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 2
+ - uid: 3904
+ components:
+ - type: Transform
+ pos: -16.5,21.5
+ parent: 2
+ - uid: 3905
+ components:
+ - type: Transform
+ pos: -15.5,24.5
+ parent: 2
+ - uid: 3906
+ components:
+ - type: Transform
+ pos: -6.5,27.5
+ parent: 2
+ - uid: 3907
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 2
+ - uid: 3908
+ components:
+ - type: Transform
+ pos: 14.5,24.5
+ parent: 2
+ - uid: 3909
+ components:
+ - type: Transform
+ pos: 17.5,22.5
+ parent: 2
+ - uid: 3910
+ components:
+ - type: Transform
+ pos: 19.5,10.5
+ parent: 2
+ - uid: 3911
+ components:
+ - type: Transform
+ pos: 18.5,-7.5
+ parent: 2
+ - uid: 3912
+ components:
+ - type: Transform
+ pos: 15.5,-4.5
+ parent: 2
+ - uid: 3913
+ components:
+ - type: Transform
+ pos: 14.5,-10.5
+ parent: 2
+ - uid: 3914
+ components:
+ - type: Transform
+ pos: 9.5,-21.5
+ parent: 2
+ - uid: 3915
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 3916
+ components:
+ - type: Transform
+ pos: 4.5,-19.5
+ parent: 2
+ - uid: 3917
+ components:
+ - type: Transform
+ pos: -5.5,-23.5
+ parent: 2
+ - uid: 3918
+ components:
+ - type: Transform
+ pos: -10.5,-22.5
+ parent: 2
+ - uid: 3919
+ components:
+ - type: Transform
+ pos: -15.5,-23.5
+ parent: 2
+ - uid: 3920
+ components:
+ - type: Transform
+ pos: -18.5,-22.5
+ parent: 2
+ - uid: 3921
+ components:
+ - type: Transform
+ pos: -21.5,-21.5
+ parent: 2
+ - uid: 3922
+ components:
+ - type: Transform
+ pos: -24.5,-16.5
+ parent: 2
+ - uid: 3923
+ components:
+ - type: Transform
+ pos: -22.5,-17.5
+ parent: 2
+ - uid: 3924
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 2
+ - uid: 3925
+ components:
+ - type: Transform
+ pos: 17.5,19.5
+ parent: 2
+ - uid: 3926
+ components:
+ - type: Transform
+ pos: 4.5,26.5
+ parent: 2
+ - uid: 3927
+ components:
+ - type: Transform
+ pos: -28.5,-13.5
+ parent: 2
+ - uid: 3928
+ components:
+ - type: Transform
+ pos: -14.5,-11.5
+ parent: 2
+ - uid: 3929
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - uid: 3930
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 2
+ - uid: 3931
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 2
+ - uid: 3932
+ components:
+ - type: Transform
+ pos: -1.5,10.5
+ parent: 2
+ - uid: 3933
+ components:
+ - type: Transform
+ pos: -7.5,7.5
+ parent: 2
+ - uid: 3934
+ components:
+ - type: Transform
+ pos: -15.5,-0.5
+ parent: 2
+ - uid: 3935
+ components:
+ - type: Transform
+ pos: -14.5,-2.5
+ parent: 2
+ - uid: 3936
+ components:
+ - type: Transform
+ pos: -13.5,-7.5
+ parent: 2
+ - uid: 3937
+ components:
+ - type: Transform
+ pos: 4.5,17.5
+ parent: 2
+ - uid: 3938
+ components:
+ - type: Transform
+ pos: -13.5,20.5
+ parent: 2
+ - uid: 3939
+ components:
+ - type: Transform
+ pos: -24.5,-12.5
+ parent: 2
+- proto: WallRockSnow
+ entities:
+ - uid: 3940
+ components:
+ - type: Transform
+ pos: -58.5,15.5
+ parent: 2
+ - uid: 3941
+ components:
+ - type: Transform
+ pos: -57.5,15.5
+ parent: 2
+ - uid: 3942
+ components:
+ - type: Transform
+ pos: -55.5,15.5
+ parent: 2
+ - uid: 3943
+ components:
+ - type: Transform
+ pos: -54.5,15.5
+ parent: 2
+ - uid: 3944
+ components:
+ - type: Transform
+ pos: -56.5,15.5
+ parent: 2
+ - uid: 3945
+ components:
+ - type: Transform
+ pos: -54.5,16.5
+ parent: 2
+ - uid: 3946
+ components:
+ - type: Transform
+ pos: -53.5,16.5
+ parent: 2
+ - uid: 3947
+ components:
+ - type: Transform
+ pos: -52.5,16.5
+ parent: 2
+ - uid: 3948
+ components:
+ - type: Transform
+ pos: -51.5,16.5
+ parent: 2
+ - uid: 3949
+ components:
+ - type: Transform
+ pos: -52.5,17.5
+ parent: 2
+ - uid: 3950
+ components:
+ - type: Transform
+ pos: -51.5,17.5
+ parent: 2
+ - uid: 3951
+ components:
+ - type: Transform
+ pos: -50.5,17.5
+ parent: 2
+ - uid: 3952
+ components:
+ - type: Transform
+ pos: -49.5,17.5
+ parent: 2
+ - uid: 3953
+ components:
+ - type: Transform
+ pos: -48.5,17.5
+ parent: 2
+ - uid: 3954
+ components:
+ - type: Transform
+ pos: -51.5,18.5
+ parent: 2
+ - uid: 3955
+ components:
+ - type: Transform
+ pos: -50.5,18.5
+ parent: 2
+ - uid: 3956
+ components:
+ - type: Transform
+ pos: -49.5,18.5
+ parent: 2
+ - uid: 3957
+ components:
+ - type: Transform
+ pos: -48.5,18.5
+ parent: 2
+ - uid: 3958
+ components:
+ - type: Transform
+ pos: -47.5,18.5
+ parent: 2
+ - uid: 3959
+ components:
+ - type: Transform
+ pos: -46.5,18.5
+ parent: 2
+ - uid: 3960
+ components:
+ - type: Transform
+ pos: -46.5,17.5
+ parent: 2
+ - uid: 3961
+ components:
+ - type: Transform
+ pos: -45.5,17.5
+ parent: 2
+ - uid: 3962
+ components:
+ - type: Transform
+ pos: -44.5,17.5
+ parent: 2
+ - uid: 3963
+ components:
+ - type: Transform
+ pos: -43.5,17.5
+ parent: 2
+ - uid: 3964
+ components:
+ - type: Transform
+ pos: -42.5,17.5
+ parent: 2
+ - uid: 3965
+ components:
+ - type: Transform
+ pos: -44.5,16.5
+ parent: 2
+ - uid: 3966
+ components:
+ - type: Transform
+ pos: -43.5,16.5
+ parent: 2
+ - uid: 3967
+ components:
+ - type: Transform
+ pos: -42.5,16.5
+ parent: 2
+ - uid: 3968
+ components:
+ - type: Transform
+ pos: -41.5,16.5
+ parent: 2
+ - uid: 3969
+ components:
+ - type: Transform
+ pos: -40.5,16.5
+ parent: 2
+ - uid: 3970
+ components:
+ - type: Transform
+ pos: -39.5,16.5
+ parent: 2
+ - uid: 3971
+ components:
+ - type: Transform
+ pos: -38.5,16.5
+ parent: 2
+ - uid: 3972
+ components:
+ - type: Transform
+ pos: -40.5,15.5
+ parent: 2
+ - uid: 3973
+ components:
+ - type: Transform
+ pos: -39.5,15.5
+ parent: 2
+ - uid: 3974
+ components:
+ - type: Transform
+ pos: -38.5,15.5
+ parent: 2
+ - uid: 3975
+ components:
+ - type: Transform
+ pos: -37.5,15.5
+ parent: 2
+ - uid: 3976
+ components:
+ - type: Transform
+ pos: -36.5,15.5
+ parent: 2
+ - uid: 3977
+ components:
+ - type: Transform
+ pos: -35.5,15.5
+ parent: 2
+ - uid: 3978
+ components:
+ - type: Transform
+ pos: -34.5,15.5
+ parent: 2
+ - uid: 3979
+ components:
+ - type: Transform
+ pos: -30.5,15.5
+ parent: 2
+ - uid: 3980
+ components:
+ - type: Transform
+ pos: -29.5,15.5
+ parent: 2
+ - uid: 3981
+ components:
+ - type: Transform
+ pos: -28.5,15.5
+ parent: 2
+ - uid: 3982
+ components:
+ - type: Transform
+ pos: -25.5,16.5
+ parent: 2
+ - uid: 3983
+ components:
+ - type: Transform
+ pos: -24.5,16.5
+ parent: 2
+ - uid: 3984
+ components:
+ - type: Transform
+ pos: -23.5,17.5
+ parent: 2
+ - uid: 3985
+ components:
+ - type: Transform
+ pos: -22.5,17.5
+ parent: 2
+ - uid: 3986
+ components:
+ - type: Transform
+ pos: -23.5,16.5
+ parent: 2
+ - uid: 3987
+ components:
+ - type: Transform
+ pos: 8.5,28.5
+ parent: 2
+ - uid: 3988
+ components:
+ - type: Transform
+ pos: 7.5,29.5
+ parent: 2
+ - uid: 3989
+ components:
+ - type: Transform
+ pos: 8.5,29.5
+ parent: 2
+ - uid: 3990
+ components:
+ - type: Transform
+ pos: 5.5,29.5
+ parent: 2
+ - uid: 3991
+ components:
+ - type: Transform
+ pos: 6.5,29.5
+ parent: 2
+ - uid: 3992
+ components:
+ - type: Transform
+ pos: -5.5,29.5
+ parent: 2
+ - uid: 3993
+ components:
+ - type: Transform
+ pos: -3.5,29.5
+ parent: 2
+ - uid: 3994
+ components:
+ - type: Transform
+ pos: -2.5,29.5
+ parent: 2
+ - uid: 3995
+ components:
+ - type: Transform
+ pos: -1.5,29.5
+ parent: 2
+ - uid: 3996
+ components:
+ - type: Transform
+ pos: -4.5,29.5
+ parent: 2
+ - uid: 3997
+ components:
+ - type: Transform
+ pos: -1.5,30.5
+ parent: 2
+ - uid: 3998
+ components:
+ - type: Transform
+ pos: -0.5,30.5
+ parent: 2
+ - uid: 3999
+ components:
+ - type: Transform
+ pos: 0.5,30.5
+ parent: 2
+ - uid: 4000
+ components:
+ - type: Transform
+ pos: 1.5,30.5
+ parent: 2
+ - uid: 4001
+ components:
+ - type: Transform
+ pos: 2.5,30.5
+ parent: 2
+ - uid: 4002
+ components:
+ - type: Transform
+ pos: 3.5,30.5
+ parent: 2
+ - uid: 4003
+ components:
+ - type: Transform
+ pos: 4.5,30.5
+ parent: 2
+ - uid: 4004
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 2
+ - uid: 4005
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 2
+ - uid: 4006
+ components:
+ - type: Transform
+ pos: 15.5,27.5
+ parent: 2
+ - uid: 4007
+ components:
+ - type: Transform
+ pos: 15.5,26.5
+ parent: 2
+ - uid: 4008
+ components:
+ - type: Transform
+ pos: 15.5,25.5
+ parent: 2
+ - uid: 4009
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 2
+ - uid: 4010
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 2
+ - uid: 4011
+ components:
+ - type: Transform
+ pos: 21.5,-4.5
+ parent: 2
+ - uid: 4012
+ components:
+ - type: Transform
+ pos: 21.5,-5.5
+ parent: 2
+ - uid: 4013
+ components:
+ - type: Transform
+ pos: 21.5,-6.5
+ parent: 2
+ - uid: 4014
+ components:
+ - type: Transform
+ pos: 21.5,-7.5
+ parent: 2
+ - uid: 4015
+ components:
+ - type: Transform
+ pos: 20.5,-7.5
+ parent: 2
+ - uid: 4016
+ components:
+ - type: Transform
+ pos: 19.5,-7.5
+ parent: 2
+ - uid: 4017
+ components:
+ - type: Transform
+ pos: 19.5,-8.5
+ parent: 2
+ - uid: 4018
+ components:
+ - type: Transform
+ pos: 19.5,-9.5
+ parent: 2
+ - uid: 4019
+ components:
+ - type: Transform
+ pos: 18.5,-9.5
+ parent: 2
+ - uid: 4020
+ components:
+ - type: Transform
+ pos: 18.5,-10.5
+ parent: 2
+ - uid: 4021
+ components:
+ - type: Transform
+ pos: 17.5,-10.5
+ parent: 2
+ - uid: 4022
+ components:
+ - type: Transform
+ pos: 17.5,-11.5
+ parent: 2
+ - uid: 4023
+ components:
+ - type: Transform
+ pos: 15.5,-11.5
+ parent: 2
+ - uid: 4024
+ components:
+ - type: Transform
+ pos: 16.5,-11.5
+ parent: 2
+ - uid: 4025
+ components:
+ - type: Transform
+ pos: 15.5,-12.5
+ parent: 2
+ - uid: 4026
+ components:
+ - type: Transform
+ pos: 9.5,-23.5
+ parent: 2
+ - uid: 4027
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - uid: 4028
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 2
+ - uid: 4029
+ components:
+ - type: Transform
+ pos: 6.5,-23.5
+ parent: 2
+ - uid: 4030
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 2
+ - uid: 4031
+ components:
+ - type: Transform
+ pos: 4.5,-23.5
+ parent: 2
+ - uid: 4032
+ components:
+ - type: Transform
+ pos: 4.5,-24.5
+ parent: 2
+ - uid: 4033
+ components:
+ - type: Transform
+ pos: 3.5,-24.5
+ parent: 2
+ - uid: 4034
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 2
+ - uid: 4035
+ components:
+ - type: Transform
+ pos: 1.5,-24.5
+ parent: 2
+ - uid: 4036
+ components:
+ - type: Transform
+ pos: 0.5,-24.5
+ parent: 2
+ - uid: 4037
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 2
+ - uid: 4038
+ components:
+ - type: Transform
+ pos: -1.5,-24.5
+ parent: 2
+ - uid: 4039
+ components:
+ - type: Transform
+ pos: -1.5,-25.5
+ parent: 2
+ - uid: 4040
+ components:
+ - type: Transform
+ pos: -2.5,-25.5
+ parent: 2
+ - uid: 4041
+ components:
+ - type: Transform
+ pos: -3.5,-25.5
+ parent: 2
+ - uid: 4042
+ components:
+ - type: Transform
+ pos: -14.5,-25.5
+ parent: 2
+ - uid: 4043
+ components:
+ - type: Transform
+ pos: -15.5,-25.5
+ parent: 2
+ - uid: 4044
+ components:
+ - type: Transform
+ pos: -16.5,-25.5
+ parent: 2
+ - uid: 4045
+ components:
+ - type: Transform
+ pos: -17.5,-25.5
+ parent: 2
+ - uid: 4046
+ components:
+ - type: Transform
+ pos: -17.5,-24.5
+ parent: 2
+ - uid: 4047
+ components:
+ - type: Transform
+ pos: -18.5,-24.5
+ parent: 2
+ - uid: 4048
+ components:
+ - type: Transform
+ pos: -19.5,-24.5
+ parent: 2
+ - uid: 4049
+ components:
+ - type: Transform
+ pos: -19.5,-23.5
+ parent: 2
+ - uid: 4050
+ components:
+ - type: Transform
+ pos: -20.5,-23.5
+ parent: 2
+ - uid: 4051
+ components:
+ - type: Transform
+ pos: -21.5,-23.5
+ parent: 2
+ - uid: 4052
+ components:
+ - type: Transform
+ pos: -24.5,-19.5
+ parent: 2
+ - uid: 4053
+ components:
+ - type: Transform
+ pos: -25.5,-19.5
+ parent: 2
+ - uid: 4054
+ components:
+ - type: Transform
+ pos: -25.5,-18.5
+ parent: 2
+ - uid: 4055
+ components:
+ - type: Transform
+ pos: -25.5,-17.5
+ parent: 2
+ - uid: 4056
+ components:
+ - type: Transform
+ pos: -26.5,-17.5
+ parent: 2
+ - uid: 4057
+ components:
+ - type: Transform
+ pos: -26.5,-16.5
+ parent: 2
+ - uid: 4058
+ components:
+ - type: Transform
+ pos: -27.5,-16.5
+ parent: 2
+ - uid: 4059
+ components:
+ - type: Transform
+ pos: -27.5,-15.5
+ parent: 2
+ - uid: 4060
+ components:
+ - type: Transform
+ pos: -39.5,-12.5
+ parent: 2
+ - uid: 4061
+ components:
+ - type: Transform
+ pos: -40.5,-12.5
+ parent: 2
+ - uid: 4062
+ components:
+ - type: Transform
+ pos: -41.5,-12.5
+ parent: 2
+ - uid: 4063
+ components:
+ - type: Transform
+ pos: -42.5,-12.5
+ parent: 2
+ - uid: 4064
+ components:
+ - type: Transform
+ pos: -42.5,-13.5
+ parent: 2
+ - uid: 4065
+ components:
+ - type: Transform
+ pos: -43.5,-13.5
+ parent: 2
+ - uid: 4066
+ components:
+ - type: Transform
+ pos: -44.5,-13.5
+ parent: 2
+ - uid: 4067
+ components:
+ - type: Transform
+ pos: -44.5,-14.5
+ parent: 2
+ - uid: 4068
+ components:
+ - type: Transform
+ pos: -45.5,-14.5
+ parent: 2
+ - uid: 4069
+ components:
+ - type: Transform
+ pos: -46.5,-14.5
+ parent: 2
+ - uid: 4070
+ components:
+ - type: Transform
+ pos: -47.5,-14.5
+ parent: 2
+ - uid: 4071
+ components:
+ - type: Transform
+ pos: -46.5,-13.5
+ parent: 2
+ - uid: 4072
+ components:
+ - type: Transform
+ pos: -47.5,-13.5
+ parent: 2
+ - uid: 4073
+ components:
+ - type: Transform
+ pos: -48.5,-13.5
+ parent: 2
+ - uid: 4074
+ components:
+ - type: Transform
+ pos: -48.5,-12.5
+ parent: 2
+ - uid: 4075
+ components:
+ - type: Transform
+ pos: -49.5,-12.5
+ parent: 2
+ - uid: 4076
+ components:
+ - type: Transform
+ pos: -50.5,-12.5
+ parent: 2
+ - uid: 4077
+ components:
+ - type: Transform
+ pos: -54.5,-12.5
+ parent: 2
+ - uid: 4078
+ components:
+ - type: Transform
+ pos: -53.5,-12.5
+ parent: 2
+ - uid: 4079
+ components:
+ - type: Transform
+ pos: -52.5,-12.5
+ parent: 2
+ - uid: 4080
+ components:
+ - type: Transform
+ pos: -51.5,-12.5
+ parent: 2
+ - uid: 4081
+ components:
+ - type: Transform
+ pos: -45.5,-13.5
+ parent: 2
+ - uid: 4082
+ components:
+ - type: Transform
+ pos: -33.5,-12.5
+ parent: 2
+ - uid: 4083
+ components:
+ - type: Transform
+ pos: -32.5,-12.5
+ parent: 2
+ - uid: 4084
+ components:
+ - type: Transform
+ pos: -31.5,-12.5
+ parent: 2
+ - uid: 4085
+ components:
+ - type: Transform
+ pos: -32.5,-13.5
+ parent: 2
+ - uid: 4086
+ components:
+ - type: Transform
+ pos: -31.5,-13.5
+ parent: 2
+ - uid: 4087
+ components:
+ - type: Transform
+ pos: -30.5,-13.5
+ parent: 2
+ - uid: 4088
+ components:
+ - type: Transform
+ pos: 12.5,29.5
+ parent: 2
+ - uid: 4089
+ components:
+ - type: Transform
+ pos: 9.5,29.5
+ parent: 2
+ - uid: 4090
+ components:
+ - type: Transform
+ pos: 10.5,29.5
+ parent: 2
+ - uid: 4091
+ components:
+ - type: Transform
+ pos: 11.5,29.5
+ parent: 2
+ - uid: 4092
+ components:
+ - type: Transform
+ pos: 13.5,29.5
+ parent: 2
+ - uid: 4093
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 2
+- proto: WardrobeCargoFilled
+ entities:
+ - uid: 4094
+ components:
+ - type: Transform
+ pos: 0.5,-21.5
+ parent: 2
+- proto: WaterCooler
+ entities:
+ - uid: 4095
+ components:
+ - type: Transform
+ pos: 6.5,-2.5
+ parent: 2
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 4096
+ components:
+ - type: Transform
+ pos: 7.5,-17.5
+ parent: 2
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 4097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,8.5
+ parent: 2
+- proto: WeaponParticleDecelerator
+ entities:
+ - uid: 4098
+ components:
+ - type: Transform
+ pos: -15.69232,-18.526127
+ parent: 2
+- proto: WeaponPistolCobra
+ entities:
+ - uid: 4099
+ components:
+ - type: Transform
+ pos: -2.551368,16.590607
+ parent: 2
+- proto: WeaponRevolverPythonBiocode
+ entities:
+ - uid: 4100
+ components:
+ - type: Transform
+ pos: -28.437277,-0.42440778
+ parent: 2
+- proto: WeaponShotgunTrenchgun4034Sawn
+ entities:
+ - uid: 4101
+ components:
+ - type: Transform
+ pos: -0.34628606,16.622198
+ parent: 2
+- proto: WeaponSprayNozzle
+ entities:
+ - uid: 4102
+ components:
+ - type: Transform
+ pos: -18.093945,-12.162229
+ parent: 2
+- proto: WeaponSubMachineGunC20rBiocode
+ entities:
+ - uid: 4103
+ components:
+ - type: Transform
+ pos: -3.376362,16.50411
+ parent: 2
+- proto: WeaponPistolCHIMP
+ entities:
+ - uid: 4104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.197031,16.197195
+ parent: 2
+- proto: WeaponTurretSyndicate
+ entities:
+ - uid: 4105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,0.5
+ parent: 2
+ - uid: 4106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,3.5
+ parent: 2
+ - uid: 4107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 4108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 4109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,3.5
+ parent: 2
+ - uid: 4110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,0.5
+ parent: 2
+ - uid: 4111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,3.5
+ parent: 2
+ - uid: 4112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,0.5
+ parent: 2
+ - uid: 4113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-7.5
+ parent: 2
+ - uid: 4114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 4115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,11.5
+ parent: 2
+ - uid: 4116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,11.5
+ parent: 2
+ - uid: 4117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,8.5
+ parent: 2
+ - uid: 4118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-6.5
+ parent: 2
+ - uid: 4119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,3.5
+ parent: 2
+ - uid: 4120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,7.5
+ parent: 2
+ - uid: 4121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-2.5
+ parent: 2
+- proto: WeldingFuelTankHighCapacity
+ entities:
+ - uid: 4122
+ components:
+ - type: Transform
+ pos: 9.5,-17.5
+ parent: 2
+ - type: CMExplosionEffect
+- proto: WindoorNukeopLocked
+ entities:
+ - uid: 4123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,-8.5
+ parent: 2
+- proto: WindoorSecureNukeopLocked
+ entities:
+ - uid: 4124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-15.5
+ parent: 2
+ - uid: 4125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,9.5
+ parent: 2
+ - uid: 4126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,10.5
+ parent: 2
+ - uid: 4127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,10.5
+ parent: 2
+- proto: WindowDirectional
+ entities:
+ - uid: 4128
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,-8.5
+ parent: 2
+ - uid: 4129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-8.5
+ parent: 2
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 4130
+ components:
+ - type: Transform
+ pos: 3.5,-14.5
+ parent: 2
+ - uid: 4131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-16.5
+ parent: 2
+ - uid: 4132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-13.5
+ parent: 2
+ - uid: 4133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-14.5
+ parent: 2
+ - uid: 4134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-16.5
+ parent: 2
+ - uid: 4135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-17.5
+ parent: 2
+ - uid: 4136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,8.5
+ parent: 2
+ - uid: 4137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,9.5
+ parent: 2
+ - uid: 4138
+ components:
+ - type: Transform
+ pos: -20.5,7.5
+ parent: 2
+ - uid: 4139
+ components:
+ - type: Transform
+ pos: -19.5,7.5
+ parent: 2
+ - uid: 4140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,8.5
+ parent: 2
+- proto: WoodDoor
+ entities:
+ - uid: 4141
+ components:
+ - type: Transform
+ pos: -15.5,-5.5
+ parent: 2
+ - type: Door
+ secondsUntilStateChange: -19583.383
+ state: Opening
+ - uid: 4142
+ components:
+ - type: Transform
+ pos: -15.5,-4.5
+ parent: 2
+ - type: Door
+ secondsUntilStateChange: -19583.816
+ state: Opening
+...
diff --git a/Resources/Maps/_Sunrise/Shuttles/DSO/CBURN/CBURN_big.yml b/Resources/Maps/_Sunrise/Shuttles/DSO/CBURN/CBURN_big.yml
index 20590d3bd5..a9e7a36aeb 100644
--- a/Resources/Maps/_Sunrise/Shuttles/DSO/CBURN/CBURN_big.yml
+++ b/Resources/Maps/_Sunrise/Shuttles/DSO/CBURN/CBURN_big.yml
@@ -40,7 +40,6 @@ entities:
name: NTS-415 «Мертвец»
- type: Transform
pos: 50.796875,-0.453125
- parent: invalid
- type: MapGrid
chunks:
-1,-1:
diff --git a/Resources/Maps/_Sunrise/Shuttles/DSO/CBURN/CBURN_small.yml b/Resources/Maps/_Sunrise/Shuttles/DSO/CBURN/CBURN_small.yml
index 30d557657d..525ef8ac98 100644
--- a/Resources/Maps/_Sunrise/Shuttles/DSO/CBURN/CBURN_small.yml
+++ b/Resources/Maps/_Sunrise/Shuttles/DSO/CBURN/CBURN_small.yml
@@ -72,7 +72,6 @@ entities:
name: NTS-РХБЗЗ-415
- type: Transform
pos: 17.5,10
- parent: invalid
- type: MapGrid
chunks:
0,0:
@@ -461,7 +460,6 @@ entities:
joints:
docking248021: !type:WeldJoint
bodyB: 1
- bodyA: invalid
id: docking248021
localAnchorB: 1.5,-8
localAnchorA: 22.5,4
@@ -469,7 +467,6 @@ entities:
stiffness: 8781.628
docking248022: !type:WeldJoint
bodyB: 1
- bodyA: invalid
id: docking248022
localAnchorB: -0.5,-8
localAnchorA: 20.5,4
@@ -822,7 +819,6 @@ entities:
parent: 1
- type: Docking
dockJointId: docking248022
- dockedWith: invalid
- type: DeviceLinkSource
lastSignals:
DoorStatus: False
@@ -836,7 +832,6 @@ entities:
parent: 1
- type: Docking
dockJointId: docking248021
- dockedWith: invalid
- type: DeviceLinkSource
lastSignals:
DoorStatus: False
diff --git a/Resources/Maps/_Sunrise/Shuttles/DSO/Other/Death_Squad.yml b/Resources/Maps/_Sunrise/Shuttles/DSO/Other/Death_Squad.yml
index 5e1d7c3a40..cb9da78571 100644
--- a/Resources/Maps/_Sunrise/Shuttles/DSO/Other/Death_Squad.yml
+++ b/Resources/Maps/_Sunrise/Shuttles/DSO/Other/Death_Squad.yml
@@ -72,7 +72,6 @@ entities:
name: NTS-Виверна-415
- type: Transform
pos: 8.274825,1.7586465
- parent: invalid
- type: MapGrid
chunks:
0,0:
@@ -225,7 +224,6 @@ entities:
joints:
docking84837: !type:WeldJoint
bodyB: 1
- bodyA: invalid
id: docking84837
localAnchorB: 0.49999997,0
localAnchorA: 12.5,4
@@ -240,7 +238,6 @@ entities:
parent: 1
- type: Docking
dockJointId: docking84837
- dockedWith: invalid
- type: DeviceLinkSource
lastSignals:
DoorStatus: False
diff --git a/Resources/Maps/_Sunrise/Shuttles/dso/cburn/alt_cburn_big.yml b/Resources/Maps/_Sunrise/Shuttles/dso/cburn/alt_cburn_big.yml
deleted file mode 100644
index 9f92cadb51..0000000000
--- a/Resources/Maps/_Sunrise/Shuttles/dso/cburn/alt_cburn_big.yml
+++ /dev/null
@@ -1,10641 +0,0 @@
-meta:
- format: 7
- category: Grid
- engineVersion: 247.2.0
- forkId: sunrise_station
- forkVersion: 61caea66b2bc191efcf30415d59a2644471144c9
- time: 04/11/2025 17:38:04
- entityCount: 1389
-maps: []
-grids:
-- 1
-orphans:
-- 1
-nullspace: []
-tilemap:
- 0: Space
- 32: FloorDark
- 33: FloorDarkDiagonal
- 3: FloorDarkDiagonalMini
- 35: FloorDarkHerringbone
- 36: FloorDarkMini
- 37: FloorDarkMono
- 39: FloorDarkPavement
- 40: FloorDarkPavementVertical
- 2: FloorMetalDiamond
- 6: FloorTechMaint
- 117: FloorWhite
- 5: FloorWhiteDiagonal
- 119: FloorWhiteDiagonalMini
- 122: FloorWhiteMono
- 4: FloorWood
- 1: FloorWoodTile
- 130: Lattice
- 131: Plating
-entities:
-- proto: ""
- entities:
- - uid: 1
- components:
- - type: MetaData
- name: NTS-415 «Savior»
- - type: Transform
- pos: -1.078125,-0.57023954
- parent: invalid
- - type: MapGrid
- chunks:
- 0,0:
- ind: 0,0
- tiles: IAAAAAAAIAAAAAAAIAAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAIwAAAAAAIAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAJQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,-1:
- ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAgwAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAgwAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAIwAAAAAAIAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAJAAAAAAAJAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAdQAAAAAABQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAdQAAAAAABQAAAAAABQAAAAAABQAAAAAAdQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAdQAAAAAABQAAAAAAdQAAAAAABQAAAAAAdQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAdQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAdQAAAAAABQAAAAAABQAAAAAAdQAAAAAAdQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAegAAAAAAegAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAdwAAAAAAdwAAAAAAdQAAAAAAdQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAdQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAdQAAAAAAdwAAAAAAdwAAAAAAdQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAdQAAAAAAdwAAAAAAdwAAAAAAdQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAIAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAIAAAAAAAIwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAJwAAAAAAJwAAAAAAIAAAAAAA
- version: 6
- -1,0:
- ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAJAAAAAAAJAAAAAAAJQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAJwAAAAAAJwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAIAAAAAAAIwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAIAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAABgAAAAAAgwAAAAAAgwAAAAAABgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAABgAAAAAAgwAAAAAAgwAAAAAABgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAgwAAAAAAAgAAAAAAIQAAAAAA
- version: 6
- -1,1:
- ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAgAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,1:
- ind: 0,1
- tiles: IQAAAAAAIQAAAAAAIQAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- - type: Broadphase
- - type: Physics
- bodyStatus: InAir
- angularDamping: 0.05
- linearDamping: 0.05
- fixedRotation: False
- bodyType: Dynamic
- - type: Fixtures
- fixtures: {}
- - type: OccluderTree
- - type: SpreaderGrid
- - type: Shuttle
- - type: GridPathfinding
- - type: Gravity
- gravityShakeSound: !type:SoundPathSpecifier
- path: /Audio/Effects/alert.ogg
- - type: DecalGrid
- chunkCollection:
- version: 2
- nodes:
- - node:
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 219: 8,-2
- 220: -7,1
- - node:
- color: '#FFFFFFFF'
- id: Box
- decals:
- 284: -5,2
- 285: -5,-3
- 286: 6,2
- 287: 6,-3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNe
- decals:
- 109: 1,18
- 113: 2,16
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNw
- decals:
- 108: 0,18
- 112: -1,16
- 460: 4,-5
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSe
- decals:
- 53: 5,4
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSw
- decals:
- 54: 4,4
- 453: 4,-14
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkEndE
- decals:
- 52: 6,6
- 449: 6,-5
- 450: 6,-8
- 451: 7,-11
- 452: 7,-14
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkEndS
- decals:
- 110: -1,15
- 111: 2,15
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkEndW
- decals:
- 331: 3,6
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerNe
- decals:
- 63: 4,4
- 124: 0,16
- 463: 4,-8
- 464: 4,-11
- 465: 4,-14
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerNw
- decals:
- 64: 5,4
- 118: 0,16
- 123: 1,16
- 461: 4,-7
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerSe
- decals:
- 65: 5,6
- 66: 4,6
- 119: -1,16
- 122: 0,18
- 466: 4,-8
- 467: 4,-11
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerSw
- decals:
- 67: 5,6
- 68: 4,6
- 120: 2,16
- 121: 1,18
- 462: 4,-7
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineE
- decals:
- 57: 5,5
- 58: 4,5
- 116: 1,17
- 117: 0,17
- 454: 4,-13
- 455: 4,-12
- 456: 4,-10
- 457: 4,-9
- 458: 4,-7
- 459: 4,-6
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineN
- decals:
- 60: 3,6
- 61: 4,6
- 62: 5,6
- 441: 6,-14
- 442: 5,-14
- 443: 5,-11
- 444: 6,-11
- 445: 5,-8
- 446: 5,-5
- 447: 3,-7
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineS
- decals:
- 59: 3,6
- 125: 0,16
- 126: 1,16
- 435: 5,-14
- 436: 6,-14
- 437: 5,-11
- 438: 6,-11
- 439: 5,-8
- 440: 5,-5
- 448: 3,-7
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineW
- decals:
- 55: 4,5
- 56: 5,5
- 114: 0,17
- 115: 1,17
- 428: 4,-13
- 429: 4,-12
- 430: 4,-11
- 431: 4,-10
- 432: 4,-9
- 433: 4,-8
- 434: 4,-6
- - node:
- color: '#52B4E937'
- id: BrickTileSteelLineN
- decals:
- 291: 8,1
- - node:
- color: '#DE3A1553'
- id: BrickTileSteelLineN
- decals:
- 289: 7,1
- - node:
- color: '#52B4E937'
- id: BrickTileSteelLineS
- decals:
- 290: -7,-2
- - node:
- color: '#DE3A1553'
- id: BrickTileSteelLineS
- decals:
- 288: -6,-2
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerNe
- decals:
- 292: -3,-5
- 310: -4,-10
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerNw
- decals:
- 293: -4,-5
- 311: -5,-10
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerSe
- decals:
- 299: -4,-8
- 324: -3,-13
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteEndE
- decals:
- 295: -2,-7
- 317: -2,-11
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteEndS
- decals:
- 316: -5,-14
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteEndW
- decals:
- 294: -5,-8
- - node:
- color: '#00990993'
- id: BrickTileWhiteInnerNe
- decals:
- 128: 0,19
- 135: 0,15
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerNe
- decals:
- 301: -3,-7
- 309: -4,-7
- 328: -5,-13
- 344: -4,-11
- - node:
- color: '#00990993'
- id: BrickTileWhiteInnerNw
- decals:
- 127: 1,19
- 136: 1,15
- 137: 1,15
- 138: 3,15
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerNw
- decals:
- 303: -4,-8
- 308: -3,-7
- 329: -3,-13
- - node:
- color: '#00990993'
- id: BrickTileWhiteInnerSe
- decals:
- 129: 0,20
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerSe
- decals:
- 302: -4,-7
- 307: -4,-5
- 325: -5,-13
- 326: -5,-11
- 330: -3,-11
- - node:
- color: '#00990993'
- id: BrickTileWhiteInnerSw
- decals:
- 130: 1,20
- 139: 3,16
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteInnerSw
- decals:
- 306: -3,-5
- 327: -3,-11
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineE
- decals:
- 296: -3,-6
- 304: -4,-6
- 313: -5,-12
- 323: -3,-12
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineN
- decals:
- 315: -4,-13
- 318: -3,-11
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineS
- decals:
- 300: -3,-7
- 312: -4,-11
- 322: -4,-13
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineW
- decals:
- 297: -4,-6
- 298: -4,-7
- 305: -3,-6
- 314: -3,-12
- 319: -5,-11
- 320: -5,-12
- 321: -5,-13
- - node:
- color: '#00990993'
- id: CheckerNESW
- decals:
- 84: 0,20
- 85: 1,19
- 88: -1,18
- 93: 3,15
- 133: 1,15
- - node:
- color: '#663C0D34'
- id: CheckerNESW
- decals:
- 191: 2,0
- 192: -1,-1
- - node:
- color: '#7A3E0621'
- id: CheckerNESW
- decals:
- 373: -3,2
- 374: 4,-3
- - node:
- color: '#A461063C'
- id: CheckerNESW
- decals:
- 370: -3,2
- - node:
- color: '#00990993'
- id: CheckerNWSE
- decals:
- 86: 1,20
- 87: 0,19
- 89: 2,18
- 90: 3,16
- 134: 0,15
- - node:
- color: '#663C0D34'
- id: CheckerNWSE
- decals:
- 189: 2,-1
- 190: -1,0
- - node:
- color: '#7A3E0621'
- id: CheckerNWSE
- decals:
- 375: -3,-3
- 376: 4,2
- - node:
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 14: 3,7
- 15: 6,7
- - node:
- color: '#52B4E996'
- id: DiagonalCheckerAOverlay
- decals:
- 258: -5,-10
- 259: -4,-10
- 260: -5,-11
- 261: -5,-12
- 262: -5,-14
- 263: -5,-13
- 264: -4,-13
- 265: -3,-13
- 266: -3,-12
- 267: -3,-11
- 268: -4,-11
- 270: -2,-11
- - node:
- color: '#00990993'
- id: DiagonalCheckerBOverlay
- decals:
- 98: -1,16
- 99: -1,15
- 100: 2,15
- 101: 2,16
- 102: 0,16
- 103: 1,16
- 104: 0,17
- 105: 1,17
- 106: 0,18
- 107: 1,18
- - node:
- color: '#334E6DFF'
- id: DiagonalCheckerBOverlay
- decals:
- 407: 7,-14
- 408: 6,-14
- 409: 5,-14
- 410: 4,-14
- 411: 4,-13
- 412: 4,-12
- 413: 4,-11
- 414: 5,-11
- 415: 6,-11
- 416: 7,-11
- 417: 4,-10
- 418: 4,-9
- 419: 4,-8
- 420: 5,-8
- 421: 6,-8
- 422: 4,-7
- 423: 3,-7
- 424: 4,-6
- 425: 4,-5
- 426: 5,-5
- 427: 6,-5
- - node:
- color: '#663C0D34'
- id: HalfTileOverlayGreyscale
- decals:
- 195: 0,-1
- 196: 1,-1
- - node:
- color: '#7A3E0621'
- id: HalfTileOverlayGreyscale
- decals:
- 377: -2,2
- 378: -1,2
- 379: 2,2
- 380: 3,2
- - node:
- color: '#663C0D34'
- id: HalfTileOverlayGreyscale180
- decals:
- 193: 0,0
- 194: 1,0
- - node:
- color: '#7A3E0621'
- id: HalfTileOverlayGreyscale180
- decals:
- 381: -2,-3
- 382: -1,-3
- 383: 2,-3
- 384: 3,-3
- - node:
- color: '#7A3E0621'
- id: HalfTileOverlayGreyscale270
- decals:
- 387: -3,1
- 388: -3,-2
- - node:
- color: '#7A3E0621'
- id: HalfTileOverlayGreyscale90
- decals:
- 385: 4,-2
- 386: 4,1
- - node:
- color: '#7A3E0621'
- id: MarkupSquareQuaterCenter
- decals:
- 389: -3,-3
- 390: -3,2
- 391: 4,2
- 392: 4,-3
- - node:
- color: '#FA750096'
- id: MiniTileDiagonalCheckerAOverlay
- decals:
- 249: -5,-8
- 250: -4,-8
- 251: -4,-7
- 252: -4,-6
- 253: -4,-5
- 254: -3,-5
- 255: -3,-6
- 256: -3,-7
- 257: -2,-7
- - node:
- color: '#DE3A3A1F'
- id: MiniTileDiagonalCheckerBOverlay
- decals:
- 44: 3,6
- 45: 4,6
- 46: 5,6
- 47: 6,6
- 48: 4,5
- 49: 5,5
- 50: 4,4
- 51: 5,4
- - node:
- color: '#663C0D34'
- id: MiniTileLineOverlayN
- decals:
- 199: 11,0
- 200: 12,0
- 201: -10,0
- 202: -11,0
- - node:
- color: '#663C0D34'
- id: MiniTileLineOverlayS
- decals:
- 197: 11,-1
- 198: 12,-1
- 203: -10,-1
- 204: -11,-1
- - node:
- color: '#FFFFFFFF'
- id: WarnFull
- decals:
- 166: 10,0
- 167: 10,-1
- 168: 13,0
- 169: 13,-1
- 170: -9,0
- 171: -9,-1
- 172: -12,0
- 173: -12,-1
- 365: 1,-14
- 368: 1,-12
- - node:
- color: '#FFFFFFFF'
- id: WarnLineE
- decals:
- 148: -2,15
- 149: -2,16
- 180: 9,0
- 181: 9,-1
- 205: -10,0
- 206: -10,-1
- 211: 12,0
- 212: 12,-1
- - node:
- color: '#FFFFFFFF'
- id: WarnLineN
- decals:
- 7: 3,5
- 8: 3,4
- 9: 6,4
- 10: 6,5
- 366: 1,-13
- - node:
- color: '#FFFFFFFF'
- id: WarnLineS
- decals:
- 146: -2,15
- 147: -2,16
- 176: -8,0
- 177: -8,-1
- 207: -11,0
- 208: -11,-1
- 209: 11,0
- 210: 11,-1
- - node:
- color: '#FFFFFFFF'
- id: WarnLineW
- decals:
- 1: 4,7
- 2: 5,7
- 3: 3,5
- 4: 3,4
- 5: 6,5
- 6: 6,4
- 367: 1,-13
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSw
- decals:
- 70: 3,10
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinEndE
- decals:
- 69: 7,10
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinEndN
- decals:
- 77: 3,13
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinInnerNe
- decals:
- 83: 3,10
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineE
- decals:
- 78: 3,12
- 79: 3,11
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
- decals:
- 71: 4,10
- 72: 5,10
- 73: 6,10
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineS
- decals:
- 74: 4,10
- 75: 5,10
- 76: 6,10
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineW
- decals:
- 80: 3,12
- 81: 3,11
- 82: 3,11
- - type: GridAtmosphere
- version: 2
- data:
- tiles:
- 0,0:
- 0: 16383
- 0,-1:
- 0: 65523
- -1,0:
- 0: 3823
- 0,1:
- 0: 48059
- -1,1:
- 0: 32631
- 0,2:
- 0: 49075
- 0,3:
- 0: 62395
- 0,4:
- 0: 14143
- -1,3:
- 0: 49271
- 1,0:
- 0: 1503
- 1,1:
- 0: 30583
- 1,2:
- 0: 65520
- 1,3:
- 0: 255
- 1: 49152
- 1,-1:
- 0: 64848
- 2,0:
- 0: 7199
- 2,1:
- 0: 1
- 1: 16
- 2,2:
- 1: 1
- 2,3:
- 1: 256
- 2,-1:
- 0: 61889
- 3,0:
- 0: 3
- 1: 256
- 3,-1:
- 0: 12288
- 1: 16
- 0,-4:
- 0: 47104
- 1: 72
- 0,-3:
- 0: 15290
- -1,-3:
- 0: 6135
- 0,-2:
- 0: 48123
- -1,-2:
- 0: 30711
- -1,-1:
- 0: 65248
- 1,-4:
- 0: 65283
- 1: 4
- 1,-3:
- 0: 8191
- 1,-2:
- 0: 30583
- 2,-4:
- 1: 16
- 2,-3:
- 1: 4096
- 2,-2:
- 1: 256
- 0: 4096
- -3,-1:
- 0: 61632
- 1: 32
- -3,0:
- 0: 3087
- 1: 512
- -2,-1:
- 0: 65154
- -2,0:
- 0: 10479
- -2,-4:
- 1: 40
- 0: 52224
- -2,-3:
- 0: 36044
- 1: 8192
- -2,-2:
- 1: 512
- 0: 43144
- -1,-4:
- 0: 30467
- 1: 132
- -2,1:
- 0: 34954
- 1: 32
- -2,2:
- 1: 2
- 0: 52416
- -2,3:
- 0: 204
- 1: 49664
- -1,2:
- 0: 30576
- -1,4:
- 0: 2060
- 1: 32
- -1,5:
- 1: 128
- 0,5:
- 0: 3
- 1: 64
- 1,4:
- 1: 16
- uniqueMixes:
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- immutable: True
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- chunkSize: 4
- - type: GasTileOverlay
- - type: RadiationGridResistance
- - uid: 4
- components:
- - type: MetaData
- name: solution - tank
- - type: Transform
- parent: 3
- - type: Solution
- solution:
- maxVol: 2000
- name: tank
- reagents:
- - data: []
- ReagentId: FluorosulfuricAcidPredator
- Quantity: 2000
- - type: ContainedSolution
- containerName: tank
- container: 3
- - uid: 6
- components:
- - type: MetaData
- name: solution - tank
- - type: Transform
- parent: 5
- - type: Solution
- solution:
- maxVol: 3000
- name: tank
- reagents:
- - data: []
- ReagentId: Phlogiston
- Quantity: 1000
- - data: []
- ReagentId: Tritium
- Quantity: 2000
- - type: ContainedSolution
- containerName: tank
- container: 5
-- proto: AirAlarm
- entities:
- - uid: 13
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-8.5
- parent: 1
- - type: DeviceList
- devices:
- - 879
- - 892
- - 893
- - 880
- - 878
- - 889
- - 891
- - 877
- - 890
- - uid: 14
- components:
- - type: Transform
- pos: -0.5,3.5
- parent: 1
- - type: DeviceList
- devices:
- - 884
- - 881
- - 875
- - 887
- - 888
- - 876
- - 886
- - 874
- - uid: 15
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,17.5
- parent: 1
- - type: DeviceList
- devices:
- - 872
- - 894
- - 882
- - 870
- - 871
- - 883
- - 885
- - 873
-- proto: AirlockCentralCommandLocked
- entities:
- - uid: 16
- components:
- - type: Transform
- pos: 0.5,14.5
- parent: 1
- - uid: 17
- components:
- - type: Transform
- pos: 1.5,14.5
- parent: 1
-- proto: AirlockChemistryLocked
- entities:
- - uid: 18
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 1
-- proto: AirlockExternalAtmosphericsLocked
- entities:
- - uid: 19
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-11.5
- parent: 1
- - type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 24:
- - DoorStatus: DoorBolt
-- proto: AirlockExternalGlass
- entities:
- - uid: 20
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,0.5
- parent: 1
- - uid: 21
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-0.5
- parent: 1
- - uid: 22
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-0.5
- parent: 1
- - uid: 23
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,0.5
- parent: 1
- - uid: 24
- components:
- - type: Transform
- pos: 1.5,-13.5
- parent: 1
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 19:
- - DoorStatus: DoorBolt
-- proto: AirlockExternalShuttleLocked
- entities:
- - uid: 25
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-0.5
- parent: 1
- - uid: 26
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,0.5
- parent: 1
- - uid: 27
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,0.5
- parent: 1
- - uid: 28
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-0.5
- parent: 1
-- proto: AirlockGlass
- entities:
- - uid: 29
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,10.5
- parent: 1
-- proto: AirlockMaintCaptainLocked
- entities:
- - uid: 30
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,6.5
- parent: 1
-- proto: AirlockMedicalLocked
- entities:
- - uid: 31
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-10.5
- parent: 1
-- proto: AirlockMedicalMorgueLocked
- entities:
- - uid: 32
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-6.5
- parent: 1
-- proto: AnomalyLocator
- entities:
- - uid: 33
- components:
- - type: Transform
- pos: -3.6527472,10.530752
- parent: 1
-- proto: AnomalyScanner
- entities:
- - uid: 34
- components:
- - type: Transform
- pos: -3.4063568,9.779186
- parent: 1
- - uid: 35
- components:
- - type: Transform
- pos: -3.5591345,9.626568
- parent: 1
-- proto: APCBasic
- entities:
- - uid: 36
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-14.5
- parent: 1
- - uid: 37
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-7.5
- parent: 1
- - uid: 38
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-2.5
- parent: 1
- - uid: 39
- components:
- - type: Transform
- pos: -5.5,2.5
- parent: 1
- - uid: 40
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,12.5
- parent: 1
- - uid: 41
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,3.5
- parent: 1
- - uid: 42
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,17.5
- parent: 1
-- proto: AtmosDeviceFanDirectional
- entities:
- - uid: 43
- components:
- - type: Transform
- pos: 1.5,-13.5
- parent: 1
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 44
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-0.5
- parent: 1
- - uid: 45
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,0.5
- parent: 1
- - uid: 46
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-0.5
- parent: 1
- - uid: 47
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,0.5
- parent: 1
-- proto: BedsheetMedical
- entities:
- - uid: 48
- components:
- - type: Transform
- pos: -5.5,-12.5
- parent: 1
- - uid: 49
- components:
- - type: Transform
- pos: -5.5,-11.5
- parent: 1
- - uid: 50
- components:
- - type: Transform
- pos: -5.5,-10.5
- parent: 1
-- proto: BiomassReclaimer
- entities:
- - uid: 51
- components:
- - type: Transform
- pos: 7.5,-12.5
- parent: 1
-- proto: BlastDoorOpen
- entities:
- - uid: 52
- components:
- - type: Transform
- pos: 5.5,14.5
- parent: 1
- - uid: 53
- components:
- - type: Transform
- pos: 3.5,18.5
- parent: 1
- - uid: 54
- components:
- - type: Transform
- pos: -1.5,18.5
- parent: 1
- - uid: 55
- components:
- - type: Transform
- pos: 0.5,21.5
- parent: 1
- - uid: 56
- components:
- - type: Transform
- pos: 1.5,21.5
- parent: 1
-- proto: BodyBagFolded
- entities:
- - uid: 57
- components:
- - type: Transform
- pos: 3.4909465,-7.3171372
- parent: 1
- - uid: 58
- components:
- - type: Transform
- pos: 3.378107,-7.2390122
- parent: 1
- - uid: 59
- components:
- - type: Transform
- pos: 3.6003215,-7.4577622
- parent: 1
-- proto: BookshelfFilled
- entities:
- - uid: 60
- components:
- - type: Transform
- pos: 7.5,11.5
- parent: 1
- - uid: 61
- components:
- - type: Transform
- pos: 7.5,12.5
- parent: 1
- - uid: 62
- components:
- - type: Transform
- pos: 7.5,13.5
- parent: 1
-- proto: BoxBeaker
- entities:
- - uid: 64
- components:
- - type: Transform
- parent: 63
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxBodyBag
- entities:
- - uid: 68
- components:
- - type: Transform
- pos: 3.6003215,-8.457762
- parent: 1
- - uid: 69
- components:
- - type: Transform
- pos: 3.3659465,-8.176512
- parent: 1
-- proto: BoxFolderGreen
- entities:
- - uid: 70
- components:
- - type: Transform
- pos: 3.645025,15.8460045
- parent: 1
- - type: Storage
- storedItems:
- 71:
- position: 0,0
- _rotation: South
- 72:
- position: 1,0
- _rotation: South
- 73:
- position: 2,0
- _rotation: South
- 74:
- position: 3,0
- _rotation: South
- 75:
- position: 4,0
- _rotation: South
- 76:
- position: 0,1
- _rotation: South
- 77:
- position: 1,1
- _rotation: South
- 78:
- position: 2,1
- _rotation: South
- 79:
- position: 3,1
- _rotation: South
- 80:
- position: 4,1
- _rotation: South
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 71
- - 72
- - 73
- - 74
- - 75
- - 76
- - 77
- - 78
- - 79
- - 80
-- proto: BoxMagazine
- entities:
- - uid: 82
- components:
- - type: MetaData
- name: коробка магазинов зажигательные
- - type: Transform
- parent: 81
- - type: Storage
- storedItems:
- 83:
- position: 0,0
- _rotation: South
- 84:
- position: 1,0
- _rotation: South
- 85:
- position: 2,0
- _rotation: South
- 86:
- position: 0,2
- _rotation: East
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 83
- - 84
- - 85
- - 86
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 87
- components:
- - type: MetaData
- name: коробка магазинов зажигательные
- - type: Transform
- parent: 81
- - type: Storage
- storedItems:
- 88:
- position: 0,0
- _rotation: South
- 89:
- position: 1,0
- _rotation: South
- 90:
- position: 2,0
- _rotation: South
- 91:
- position: 0,2
- _rotation: East
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 88
- - 89
- - 91
- - 90
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 92
- components:
- - type: MetaData
- name: коробка магазинов зажигательные
- - type: Transform
- parent: 81
- - type: Storage
- storedItems:
- 93:
- position: 0,0
- _rotation: South
- 94:
- position: 1,0
- _rotation: South
- 95:
- position: 2,0
- _rotation: South
- 96:
- position: 0,2
- _rotation: East
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 93
- - 94
- - 95
- - 96
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxMagazineLightRifle
- entities:
- - uid: 97
- components:
- - type: Transform
- parent: 81
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxMagazineShotgun
- entities:
- - uid: 102
- components:
- - type: Transform
- parent: 101
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxMagazineShotgunIncendiary
- entities:
- - uid: 103
- components:
- - type: Transform
- parent: 101
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 104
- components:
- - type: Transform
- parent: 101
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 105
- components:
- - type: Transform
- parent: 101
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxPillCanister
- entities:
- - uid: 65
- components:
- - type: Transform
- parent: 63
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CableApcExtension
- entities:
- - uid: 109
- components:
- - type: Transform
- pos: 6.5,-7.5
- parent: 1
- - uid: 110
- components:
- - type: Transform
- pos: 7.5,-7.5
- parent: 1
- - uid: 111
- components:
- - type: Transform
- pos: 6.5,2.5
- parent: 1
- - uid: 112
- components:
- - type: Transform
- pos: -4.5,-14.5
- parent: 1
- - uid: 113
- components:
- - type: Transform
- pos: -4.5,-12.5
- parent: 1
- - uid: 114
- components:
- - type: Transform
- pos: -4.5,-13.5
- parent: 1
- - uid: 115
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 1
- - uid: 116
- components:
- - type: Transform
- pos: -4.5,-10.5
- parent: 1
- - uid: 117
- components:
- - type: Transform
- pos: -3.5,-10.5
- parent: 1
- - uid: 118
- components:
- - type: Transform
- pos: -2.5,-10.5
- parent: 1
- - uid: 119
- components:
- - type: Transform
- pos: -3.5,-13.5
- parent: 1
- - uid: 120
- components:
- - type: Transform
- pos: -2.5,-13.5
- parent: 1
- - uid: 121
- components:
- - type: Transform
- pos: -1.5,-13.5
- parent: 1
- - uid: 122
- components:
- - type: Transform
- pos: -3.5,-9.5
- parent: 1
- - uid: 123
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 1
- - uid: 124
- components:
- - type: Transform
- pos: -3.5,-7.5
- parent: 1
- - uid: 125
- components:
- - type: Transform
- pos: -3.5,-6.5
- parent: 1
- - uid: 126
- components:
- - type: Transform
- pos: -3.5,-5.5
- parent: 1
- - uid: 127
- components:
- - type: Transform
- pos: -3.5,-4.5
- parent: 1
- - uid: 128
- components:
- - type: Transform
- pos: -2.5,-6.5
- parent: 1
- - uid: 129
- components:
- - type: Transform
- pos: -1.5,-6.5
- parent: 1
- - uid: 130
- components:
- - type: Transform
- pos: -1.5,-10.5
- parent: 1
- - uid: 131
- components:
- - type: Transform
- pos: 2.5,17.5
- parent: 1
- - uid: 132
- components:
- - type: Transform
- pos: 0.5,18.5
- parent: 1
- - uid: 133
- components:
- - type: Transform
- pos: 0.5,19.5
- parent: 1
- - uid: 134
- components:
- - type: Transform
- pos: 0.5,17.5
- parent: 1
- - uid: 135
- components:
- - type: Transform
- pos: 1.5,16.5
- parent: 1
- - uid: 136
- components:
- - type: Transform
- pos: 5.5,-6.5
- parent: 1
- - uid: 137
- components:
- - type: Transform
- pos: 4.5,-6.5
- parent: 1
- - uid: 138
- components:
- - type: Transform
- pos: 3.5,-6.5
- parent: 1
- - uid: 139
- components:
- - type: Transform
- pos: 1.5,17.5
- parent: 1
- - uid: 140
- components:
- - type: Transform
- pos: 6.5,-6.5
- parent: 1
- - uid: 141
- components:
- - type: Transform
- pos: 4.5,-5.5
- parent: 1
- - uid: 142
- components:
- - type: Transform
- pos: 6.5,-5.5
- parent: 1
- - uid: 143
- components:
- - type: Transform
- pos: 4.5,-7.5
- parent: 1
- - uid: 144
- components:
- - type: Transform
- pos: 4.5,-8.5
- parent: 1
- - uid: 145
- components:
- - type: Transform
- pos: 4.5,-9.5
- parent: 1
- - uid: 146
- components:
- - type: Transform
- pos: 4.5,-10.5
- parent: 1
- - uid: 147
- components:
- - type: Transform
- pos: 5.5,-10.5
- parent: 1
- - uid: 148
- components:
- - type: Transform
- pos: 6.5,-10.5
- parent: 1
- - uid: 149
- components:
- - type: Transform
- pos: 7.5,-10.5
- parent: 1
- - uid: 150
- components:
- - type: Transform
- pos: 4.5,-11.5
- parent: 1
- - uid: 151
- components:
- - type: Transform
- pos: 4.5,-13.5
- parent: 1
- - uid: 152
- components:
- - type: Transform
- pos: 4.5,-12.5
- parent: 1
- - uid: 153
- components:
- - type: Transform
- pos: 5.5,-13.5
- parent: 1
- - uid: 154
- components:
- - type: Transform
- pos: 7.5,-13.5
- parent: 1
- - uid: 155
- components:
- - type: Transform
- pos: 6.5,-13.5
- parent: 1
- - uid: 156
- components:
- - type: Transform
- pos: -1.5,-12.5
- parent: 1
- - uid: 157
- components:
- - type: Transform
- pos: -0.5,16.5
- parent: 1
- - uid: 158
- components:
- - type: Transform
- pos: 0.5,16.5
- parent: 1
- - uid: 159
- components:
- - type: Transform
- pos: 2.5,16.5
- parent: 1
- - uid: 160
- components:
- - type: Transform
- pos: 0.5,15.5
- parent: 1
- - uid: 161
- components:
- - type: Transform
- pos: 0.5,14.5
- parent: 1
- - uid: 162
- components:
- - type: Transform
- pos: 0.5,12.5
- parent: 1
- - uid: 163
- components:
- - type: Transform
- pos: 0.5,13.5
- parent: 1
- - uid: 164
- components:
- - type: Transform
- pos: 0.5,11.5
- parent: 1
- - uid: 165
- components:
- - type: Transform
- pos: 0.5,10.5
- parent: 1
- - uid: 166
- components:
- - type: Transform
- pos: 0.5,9.5
- parent: 1
- - uid: 167
- components:
- - type: Transform
- pos: 0.5,8.5
- parent: 1
- - uid: 168
- components:
- - type: Transform
- pos: 0.5,7.5
- parent: 1
- - uid: 169
- components:
- - type: Transform
- pos: 0.5,6.5
- parent: 1
- - uid: 170
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 1
- - uid: 171
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 1
- - uid: 172
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 1
- - uid: 173
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 1
- - uid: 174
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 1
- - uid: 175
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 1
- - uid: 176
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 1
- - uid: 177
- components:
- - type: Transform
- pos: 0.5,-11.5
- parent: 1
- - uid: 178
- components:
- - type: Transform
- pos: 0.5,-9.5
- parent: 1
- - uid: 179
- components:
- - type: Transform
- pos: 0.5,5.5
- parent: 1
- - uid: 180
- components:
- - type: Transform
- pos: 0.5,-3.5
- parent: 1
- - uid: 181
- components:
- - type: Transform
- pos: 0.5,-2.5
- parent: 1
- - uid: 182
- components:
- - type: Transform
- pos: 0.5,-4.5
- parent: 1
- - uid: 183
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 1
- - uid: 184
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 1
- - uid: 185
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 1
- - uid: 186
- components:
- - type: Transform
- pos: 0.5,-8.5
- parent: 1
- - uid: 187
- components:
- - type: Transform
- pos: 0.5,-10.5
- parent: 1
- - uid: 188
- components:
- - type: Transform
- pos: 1.5,-11.5
- parent: 1
- - uid: 189
- components:
- - type: Transform
- pos: 7.5,-2.5
- parent: 1
- - uid: 190
- components:
- - type: Transform
- pos: 7.5,-0.5
- parent: 1
- - uid: 191
- components:
- - type: Transform
- pos: 7.5,0.5
- parent: 1
- - uid: 192
- components:
- - type: Transform
- pos: 7.5,-1.5
- parent: 1
- - uid: 193
- components:
- - type: Transform
- pos: 8.5,0.5
- parent: 1
- - uid: 194
- components:
- - type: Transform
- pos: 9.5,0.5
- parent: 1
- - uid: 195
- components:
- - type: Transform
- pos: 10.5,0.5
- parent: 1
- - uid: 196
- components:
- - type: Transform
- pos: 11.5,0.5
- parent: 1
- - uid: 197
- components:
- - type: Transform
- pos: 11.5,-0.5
- parent: 1
- - uid: 198
- components:
- - type: Transform
- pos: 10.5,-0.5
- parent: 1
- - uid: 199
- components:
- - type: Transform
- pos: 10.5,-0.5
- parent: 1
- - uid: 200
- components:
- - type: Transform
- pos: 6.5,0.5
- parent: 1
- - uid: 201
- components:
- - type: Transform
- pos: 6.5,1.5
- parent: 1
- - uid: 202
- components:
- - type: Transform
- pos: 6.5,-1.5
- parent: 1
- - uid: 203
- components:
- - type: Transform
- pos: 5.5,0.5
- parent: 1
- - uid: 204
- components:
- - type: Transform
- pos: 3.5,0.5
- parent: 1
- - uid: 205
- components:
- - type: Transform
- pos: 4.5,0.5
- parent: 1
- - uid: 206
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 1
- - uid: 207
- components:
- - type: Transform
- pos: 3.5,-0.5
- parent: 1
- - uid: 208
- components:
- - type: Transform
- pos: 3.5,-1.5
- parent: 1
- - uid: 209
- components:
- - type: Transform
- pos: 3.5,-1.5
- parent: 1
- - uid: 210
- components:
- - type: Transform
- pos: -5.5,2.5
- parent: 1
- - uid: 211
- components:
- - type: Transform
- pos: -5.5,0.5
- parent: 1
- - uid: 212
- components:
- - type: Transform
- pos: -5.5,1.5
- parent: 1
- - uid: 213
- components:
- - type: Transform
- pos: -6.5,0.5
- parent: 1
- - uid: 214
- components:
- - type: Transform
- pos: -8.5,0.5
- parent: 1
- - uid: 215
- components:
- - type: Transform
- pos: -9.5,0.5
- parent: 1
- - uid: 216
- components:
- - type: Transform
- pos: -10.5,0.5
- parent: 1
- - uid: 217
- components:
- - type: Transform
- pos: -7.5,0.5
- parent: 1
- - uid: 218
- components:
- - type: Transform
- pos: -10.5,-0.5
- parent: 1
- - uid: 219
- components:
- - type: Transform
- pos: 12.5,0.5
- parent: 1
- - uid: 220
- components:
- - type: Transform
- pos: 12.5,-0.5
- parent: 1
- - uid: 221
- components:
- - type: Transform
- pos: 12.5,-0.5
- parent: 1
- - uid: 222
- components:
- - type: Transform
- pos: -9.5,-0.5
- parent: 1
- - uid: 223
- components:
- - type: Transform
- pos: -8.5,-0.5
- parent: 1
- - uid: 224
- components:
- - type: Transform
- pos: -4.5,0.5
- parent: 1
- - uid: 225
- components:
- - type: Transform
- pos: -4.5,-0.5
- parent: 1
- - uid: 226
- components:
- - type: Transform
- pos: -4.5,-1.5
- parent: 1
- - uid: 227
- components:
- - type: Transform
- pos: -4.5,1.5
- parent: 1
- - uid: 228
- components:
- - type: Transform
- pos: -3.5,0.5
- parent: 1
- - uid: 229
- components:
- - type: Transform
- pos: -1.5,0.5
- parent: 1
- - uid: 230
- components:
- - type: Transform
- pos: -2.5,0.5
- parent: 1
- - uid: 231
- components:
- - type: Transform
- pos: -1.5,1.5
- parent: 1
- - uid: 232
- components:
- - type: Transform
- pos: -1.5,-0.5
- parent: 1
- - uid: 233
- components:
- - type: Transform
- pos: -1.5,-1.5
- parent: 1
- - uid: 234
- components:
- - type: Transform
- pos: -6.5,12.5
- parent: 1
- - uid: 235
- components:
- - type: Transform
- pos: -5.5,12.5
- parent: 1
- - uid: 236
- components:
- - type: Transform
- pos: -4.5,12.5
- parent: 1
- - uid: 237
- components:
- - type: Transform
- pos: -3.5,12.5
- parent: 1
- - uid: 238
- components:
- - type: Transform
- pos: -2.5,12.5
- parent: 1
- - uid: 239
- components:
- - type: Transform
- pos: -4.5,11.5
- parent: 1
- - uid: 240
- components:
- - type: Transform
- pos: -4.5,10.5
- parent: 1
- - uid: 241
- components:
- - type: Transform
- pos: -4.5,9.5
- parent: 1
- - uid: 242
- components:
- - type: Transform
- pos: -2.5,11.5
- parent: 1
- - uid: 243
- components:
- - type: Transform
- pos: -2.5,10.5
- parent: 1
- - uid: 244
- components:
- - type: Transform
- pos: -4.5,8.5
- parent: 1
- - uid: 245
- components:
- - type: Transform
- pos: -4.5,6.5
- parent: 1
- - uid: 246
- components:
- - type: Transform
- pos: -4.5,7.5
- parent: 1
- - uid: 247
- components:
- - type: Transform
- pos: -3.5,6.5
- parent: 1
- - uid: 248
- components:
- - type: Transform
- pos: -2.5,6.5
- parent: 1
- - uid: 249
- components:
- - type: Transform
- pos: -1.5,6.5
- parent: 1
- - uid: 250
- components:
- - type: Transform
- pos: -3.5,5.5
- parent: 1
- - uid: 251
- components:
- - type: Transform
- pos: -3.5,4.5
- parent: 1
- - uid: 252
- components:
- - type: Transform
- pos: 4.5,3.5
- parent: 1
- - uid: 253
- components:
- - type: Transform
- pos: 4.5,5.5
- parent: 1
- - uid: 254
- components:
- - type: Transform
- pos: 4.5,6.5
- parent: 1
- - uid: 255
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 1
- - uid: 256
- components:
- - type: Transform
- pos: 5.5,6.5
- parent: 1
- - uid: 257
- components:
- - type: Transform
- pos: 6.5,6.5
- parent: 1
- - uid: 258
- components:
- - type: Transform
- pos: 3.5,6.5
- parent: 1
- - uid: 259
- components:
- - type: Transform
- pos: 4.5,7.5
- parent: 1
- - uid: 260
- components:
- - type: Transform
- pos: 4.5,9.5
- parent: 1
- - uid: 261
- components:
- - type: Transform
- pos: 4.5,8.5
- parent: 1
- - uid: 262
- components:
- - type: Transform
- pos: 4.5,10.5
- parent: 1
- - uid: 263
- components:
- - type: Transform
- pos: 5.5,10.5
- parent: 1
- - uid: 264
- components:
- - type: Transform
- pos: 6.5,10.5
- parent: 1
- - uid: 265
- components:
- - type: Transform
- pos: 7.5,2.5
- parent: 1
- - uid: 266
- components:
- - type: Transform
- pos: 7.5,3.5
- parent: 1
- - uid: 267
- components:
- - type: Transform
- pos: 7.5,4.5
- parent: 1
- - uid: 268
- components:
- - type: Transform
- pos: 7.5,-3.5
- parent: 1
- - uid: 269
- components:
- - type: Transform
- pos: 7.5,-4.5
- parent: 1
- - uid: 270
- components:
- - type: Transform
- pos: -5.5,3.5
- parent: 1
- - uid: 271
- components:
- - type: Transform
- pos: -5.5,4.5
- parent: 1
- - uid: 272
- components:
- - type: Transform
- pos: -4.5,-2.5
- parent: 1
- - uid: 273
- components:
- - type: Transform
- pos: -5.5,-2.5
- parent: 1
- - uid: 274
- components:
- - type: Transform
- pos: -5.5,-3.5
- parent: 1
- - uid: 275
- components:
- - type: Transform
- pos: -5.5,-4.5
- parent: 1
- - uid: 276
- components:
- - type: Transform
- pos: 6.5,11.5
- parent: 1
- - uid: 277
- components:
- - type: Transform
- pos: 6.5,12.5
- parent: 1
- - uid: 278
- components:
- - type: Transform
- pos: 4.5,11.5
- parent: 1
- - uid: 279
- components:
- - type: Transform
- pos: 4.5,12.5
- parent: 1
- - uid: 280
- components:
- - type: Transform
- pos: 1.5,-12.5
- parent: 1
-- proto: CableApcStack
- entities:
- - uid: 282
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CableHV
- entities:
- - uid: 294
- components:
- - type: Transform
- pos: -4.5,5.5
- parent: 1
- - uid: 295
- components:
- - type: Transform
- pos: -3.5,5.5
- parent: 1
- - uid: 296
- components:
- - type: Transform
- pos: -2.5,5.5
- parent: 1
- - uid: 297
- components:
- - type: Transform
- pos: -1.5,5.5
- parent: 1
- - uid: 298
- components:
- - type: Transform
- pos: -4.5,4.5
- parent: 1
- - uid: 299
- components:
- - type: Transform
- pos: -3.5,4.5
- parent: 1
- - uid: 300
- components:
- - type: Transform
- pos: -2.5,4.5
- parent: 1
- - uid: 301
- components:
- - type: Transform
- pos: -1.5,4.5
- parent: 1
- - uid: 302
- components:
- - type: Transform
- pos: -3.5,3.5
- parent: 1
- - uid: 303
- components:
- - type: Transform
- pos: -4.5,3.5
- parent: 1
- - uid: 304
- components:
- - type: Transform
- pos: -3.5,6.5
- parent: 1
- - uid: 305
- components:
- - type: Transform
- pos: -4.5,6.5
- parent: 1
- - uid: 306
- components:
- - type: Transform
- pos: -5.5,6.5
- parent: 1
- - uid: 307
- components:
- - type: Transform
- pos: -5.5,7.5
- parent: 1
- - uid: 308
- components:
- - type: Transform
- pos: -5.5,7.5
- parent: 1
- - uid: 309
- components:
- - type: Transform
- pos: -3.5,7.5
- parent: 1
- - uid: 310
- components:
- - type: Transform
- pos: -3.5,8.5
- parent: 1
- - uid: 311
- components:
- - type: Transform
- pos: -2.5,8.5
- parent: 1
- - uid: 312
- components:
- - type: Transform
- pos: -5.5,5.5
- parent: 1
- - uid: 313
- components:
- - type: Transform
- pos: -5.5,4.5
- parent: 1
-- proto: CableHVStack
- entities:
- - uid: 283
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CableMV
- entities:
- - uid: 314
- components:
- - type: Transform
- pos: 6.5,-7.5
- parent: 1
- - uid: 315
- components:
- - type: Transform
- pos: 7.5,-7.5
- parent: 1
- - uid: 316
- components:
- - type: Transform
- pos: 1.5,6.5
- parent: 1
- - uid: 317
- components:
- - type: Transform
- pos: -3.5,3.5
- parent: 1
- - uid: 318
- components:
- - type: Transform
- pos: -3.5,5.5
- parent: 1
- - uid: 319
- components:
- - type: Transform
- pos: -3.5,6.5
- parent: 1
- - uid: 320
- components:
- - type: Transform
- pos: -3.5,4.5
- parent: 1
- - uid: 321
- components:
- - type: Transform
- pos: -2.5,6.5
- parent: 1
- - uid: 322
- components:
- - type: Transform
- pos: -0.5,6.5
- parent: 1
- - uid: 323
- components:
- - type: Transform
- pos: 0.5,6.5
- parent: 1
- - uid: 324
- components:
- - type: Transform
- pos: -1.5,6.5
- parent: 1
- - uid: 325
- components:
- - type: Transform
- pos: 0.5,7.5
- parent: 1
- - uid: 326
- components:
- - type: Transform
- pos: 0.5,8.5
- parent: 1
- - uid: 327
- components:
- - type: Transform
- pos: 0.5,9.5
- parent: 1
- - uid: 328
- components:
- - type: Transform
- pos: 0.5,10.5
- parent: 1
- - uid: 329
- components:
- - type: Transform
- pos: 0.5,11.5
- parent: 1
- - uid: 330
- components:
- - type: Transform
- pos: -1.5,11.5
- parent: 1
- - uid: 331
- components:
- - type: Transform
- pos: -3.5,11.5
- parent: 1
- - uid: 332
- components:
- - type: Transform
- pos: -2.5,11.5
- parent: 1
- - uid: 333
- components:
- - type: Transform
- pos: -4.5,11.5
- parent: 1
- - uid: 334
- components:
- - type: Transform
- pos: -0.5,11.5
- parent: 1
- - uid: 335
- components:
- - type: Transform
- pos: -4.5,12.5
- parent: 1
- - uid: 336
- components:
- - type: Transform
- pos: -6.5,12.5
- parent: 1
- - uid: 337
- components:
- - type: Transform
- pos: -5.5,12.5
- parent: 1
- - uid: 338
- components:
- - type: Transform
- pos: 2.5,6.5
- parent: 1
- - uid: 339
- components:
- - type: Transform
- pos: 3.5,6.5
- parent: 1
- - uid: 340
- components:
- - type: Transform
- pos: 4.5,6.5
- parent: 1
- - uid: 341
- components:
- - type: Transform
- pos: 4.5,5.5
- parent: 1
- - uid: 342
- components:
- - type: Transform
- pos: 4.5,3.5
- parent: 1
- - uid: 343
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 1
- - uid: 344
- components:
- - type: Transform
- pos: 0.5,12.5
- parent: 1
- - uid: 345
- components:
- - type: Transform
- pos: 0.5,14.5
- parent: 1
- - uid: 346
- components:
- - type: Transform
- pos: 0.5,15.5
- parent: 1
- - uid: 347
- components:
- - type: Transform
- pos: 0.5,16.5
- parent: 1
- - uid: 348
- components:
- - type: Transform
- pos: 0.5,13.5
- parent: 1
- - uid: 349
- components:
- - type: Transform
- pos: 0.5,17.5
- parent: 1
- - uid: 350
- components:
- - type: Transform
- pos: 1.5,17.5
- parent: 1
- - uid: 351
- components:
- - type: Transform
- pos: 2.5,17.5
- parent: 1
- - uid: 352
- components:
- - type: Transform
- pos: 0.5,5.5
- parent: 1
- - uid: 353
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 1
- - uid: 354
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 1
- - uid: 355
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 1
- - uid: 356
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 1
- - uid: 357
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 1
- - uid: 358
- components:
- - type: Transform
- pos: -0.5,0.5
- parent: 1
- - uid: 359
- components:
- - type: Transform
- pos: -1.5,0.5
- parent: 1
- - uid: 360
- components:
- - type: Transform
- pos: -2.5,0.5
- parent: 1
- - uid: 361
- components:
- - type: Transform
- pos: -4.5,0.5
- parent: 1
- - uid: 362
- components:
- - type: Transform
- pos: -3.5,0.5
- parent: 1
- - uid: 363
- components:
- - type: Transform
- pos: -5.5,0.5
- parent: 1
- - uid: 364
- components:
- - type: Transform
- pos: -5.5,1.5
- parent: 1
- - uid: 365
- components:
- - type: Transform
- pos: -5.5,2.5
- parent: 1
- - uid: 366
- components:
- - type: Transform
- pos: 1.5,0.5
- parent: 1
- - uid: 367
- components:
- - type: Transform
- pos: 2.5,0.5
- parent: 1
- - uid: 368
- components:
- - type: Transform
- pos: 3.5,0.5
- parent: 1
- - uid: 369
- components:
- - type: Transform
- pos: 4.5,0.5
- parent: 1
- - uid: 370
- components:
- - type: Transform
- pos: 5.5,0.5
- parent: 1
- - uid: 371
- components:
- - type: Transform
- pos: 6.5,0.5
- parent: 1
- - uid: 372
- components:
- - type: Transform
- pos: 7.5,0.5
- parent: 1
- - uid: 373
- components:
- - type: Transform
- pos: 7.5,-0.5
- parent: 1
- - uid: 374
- components:
- - type: Transform
- pos: 7.5,-1.5
- parent: 1
- - uid: 375
- components:
- - type: Transform
- pos: 7.5,-2.5
- parent: 1
- - uid: 376
- components:
- - type: Transform
- pos: 0.5,-4.5
- parent: 1
- - uid: 377
- components:
- - type: Transform
- pos: 0.5,-10.5
- parent: 1
- - uid: 378
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 1
- - uid: 379
- components:
- - type: Transform
- pos: 0.5,-2.5
- parent: 1
- - uid: 380
- components:
- - type: Transform
- pos: 0.5,-3.5
- parent: 1
- - uid: 381
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 1
- - uid: 382
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 1
- - uid: 383
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 1
- - uid: 384
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 1
- - uid: 385
- components:
- - type: Transform
- pos: 0.5,-8.5
- parent: 1
- - uid: 386
- components:
- - type: Transform
- pos: 0.5,-9.5
- parent: 1
- - uid: 387
- components:
- - type: Transform
- pos: -0.5,-10.5
- parent: 1
- - uid: 388
- components:
- - type: Transform
- pos: -1.5,-10.5
- parent: 1
- - uid: 389
- components:
- - type: Transform
- pos: -2.5,-10.5
- parent: 1
- - uid: 390
- components:
- - type: Transform
- pos: -3.5,-10.5
- parent: 1
- - uid: 391
- components:
- - type: Transform
- pos: -4.5,-10.5
- parent: 1
- - uid: 392
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 1
- - uid: 393
- components:
- - type: Transform
- pos: -4.5,-12.5
- parent: 1
- - uid: 394
- components:
- - type: Transform
- pos: -4.5,-14.5
- parent: 1
- - uid: 395
- components:
- - type: Transform
- pos: -4.5,-13.5
- parent: 1
- - uid: 396
- components:
- - type: Transform
- pos: 1.5,-6.5
- parent: 1
- - uid: 397
- components:
- - type: Transform
- pos: 2.5,-6.5
- parent: 1
- - uid: 398
- components:
- - type: Transform
- pos: 3.5,-6.5
- parent: 1
- - uid: 399
- components:
- - type: Transform
- pos: 4.5,-6.5
- parent: 1
- - uid: 400
- components:
- - type: Transform
- pos: 5.5,-6.5
- parent: 1
- - uid: 401
- components:
- - type: Transform
- pos: 6.5,-6.5
- parent: 1
-- proto: CableMVStack
- entities:
- - uid: 284
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: Catwalk
- entities:
- - uid: 402
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,10.5
- parent: 1
- - uid: 403
- components:
- - type: Transform
- pos: -4.5,13.5
- parent: 1
- - uid: 404
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,11.5
- parent: 1
- - uid: 405
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,6.5
- parent: 1
- - uid: 406
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,6.5
- parent: 1
- - uid: 407
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,5.5
- parent: 1
- - uid: 408
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,4.5
- parent: 1
- - uid: 409
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,4.5
- parent: 1
- - uid: 410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,5.5
- parent: 1
- - uid: 411
- components:
- - type: Transform
- pos: -5.5,11.5
- parent: 1
- - uid: 412
- components:
- - type: Transform
- pos: -1.5,6.5
- parent: 1
- - uid: 413
- components:
- - type: Transform
- pos: -5.5,12.5
- parent: 1
- - uid: 414
- components:
- - type: Transform
- pos: -3.5,13.5
- parent: 1
- - uid: 415
- components:
- - type: Transform
- pos: -4.5,12.5
- parent: 1
- - uid: 416
- components:
- - type: Transform
- pos: -3.5,12.5
- parent: 1
- - uid: 417
- components:
- - type: Transform
- pos: -3.5,11.5
- parent: 1
- - uid: 418
- components:
- - type: Transform
- pos: -4.5,11.5
- parent: 1
- - uid: 419
- components:
- - type: Transform
- pos: -2.5,12.5
- parent: 1
- - uid: 420
- components:
- - type: Transform
- pos: -2.5,13.5
- parent: 1
- - uid: 421
- components:
- - type: Transform
- pos: -1.5,13.5
- parent: 1
- - uid: 422
- components:
- - type: Transform
- pos: -2.5,11.5
- parent: 1
- - uid: 423
- components:
- - type: Transform
- pos: -1.5,12.5
- parent: 1
- - uid: 424
- components:
- - type: Transform
- pos: -1.5,11.5
- parent: 1
- - uid: 425
- components:
- - type: Transform
- pos: -2.5,10.5
- parent: 1
- - uid: 426
- components:
- - type: Transform
- pos: -1.5,10.5
- parent: 1
- - uid: 427
- components:
- - type: Transform
- pos: -4.5,10.5
- parent: 1
- - uid: 428
- components:
- - type: Transform
- pos: -4.5,9.5
- parent: 1
- - uid: 429
- components:
- - type: Transform
- pos: -2.5,9.5
- parent: 1
- - uid: 430
- components:
- - type: Transform
- pos: -1.5,9.5
- parent: 1
- - uid: 431
- components:
- - type: Transform
- pos: 1.5,-11.5
- parent: 1
- - uid: 432
- components:
- - type: Transform
- pos: -1.5,6.5
- parent: 1
- - uid: 433
- components:
- - type: Transform
- pos: -4.5,6.5
- parent: 1
- - uid: 434
- components:
- - type: Transform
- pos: -4.5,2.5
- parent: 1
- - uid: 435
- components:
- - type: Transform
- pos: -4.5,-2.5
- parent: 1
- - uid: 436
- components:
- - type: Transform
- pos: 6.5,2.5
- parent: 1
- - uid: 437
- components:
- - type: Transform
- pos: 6.5,-2.5
- parent: 1
- - uid: 438
- components:
- - type: Transform
- pos: 6.5,-2.5
- parent: 1
- - uid: 439
- components:
- - type: Transform
- pos: 6.5,-1.5
- parent: 1
- - uid: 440
- components:
- - type: Transform
- pos: 6.5,1.5
- parent: 1
- - uid: 441
- components:
- - type: Transform
- pos: -4.5,1.5
- parent: 1
- - uid: 442
- components:
- - type: Transform
- pos: -4.5,-1.5
- parent: 1
- - uid: 443
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-12.5
- parent: 1
- - uid: 444
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-12.5
- parent: 1
- - uid: 445
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,4.5
- parent: 1
- - uid: 446
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,3.5
- parent: 1
- - uid: 447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,2.5
- parent: 1
- - uid: 448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,2.5
- parent: 1
- - uid: 449
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-2.5
- parent: 1
- - uid: 450
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-2.5
- parent: 1
- - uid: 451
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-4.5
- parent: 1
- - uid: 452
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-3.5
- parent: 1
- - uid: 453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-15.5
- parent: 1
- - uid: 454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-15.5
- parent: 1
- - uid: 455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-15.5
- parent: 1
- - uid: 456
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-15.5
- parent: 1
- - uid: 457
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-3.5
- parent: 1
- - uid: 458
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-4.5
- parent: 1
- - uid: 459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-2.5
- parent: 1
- - uid: 460
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-2.5
- parent: 1
- - uid: 461
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,2.5
- parent: 1
- - uid: 462
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,2.5
- parent: 1
- - uid: 463
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,4.5
- parent: 1
- - uid: 464
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,3.5
- parent: 1
- - uid: 465
- components:
- - type: Transform
- pos: 1.5,-13.5
- parent: 1
-- proto: Chainsaw
- entities:
- - uid: 466
- components:
- - type: Transform
- pos: 6.6061435,-12.347006
- parent: 1
-- proto: Chair
- entities:
- - uid: 467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-1.5
- parent: 1
- - uid: 468
- components:
- - type: Transform
- pos: -5.5,1.5
- parent: 1
- - uid: 469
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-2.5
- parent: 1
- - uid: 470
- components:
- - type: Transform
- pos: -0.5,2.5
- parent: 1
- - uid: 471
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-2.5
- parent: 1
- - uid: 472
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-2.5
- parent: 1
- - uid: 473
- components:
- - type: Transform
- pos: -1.5,2.5
- parent: 1
- - uid: 474
- components:
- - type: Transform
- pos: 2.5,2.5
- parent: 1
- - uid: 475
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-2.5
- parent: 1
- - uid: 476
- components:
- - type: Transform
- pos: 3.5,2.5
- parent: 1
-- proto: ChairOfficeGrey
- entities:
- - uid: 477
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,15.5
- parent: 1
-- proto: ChairOfficeLight
- entities:
- - uid: 478
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-5.5
- parent: 1
- - uid: 479
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
- parent: 1
-- proto: ChairPilotSeat
- entities:
- - uid: 480
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,0.5
- parent: 1
- - uid: 481
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,0.5
- parent: 1
- - uid: 482
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,0.5
- parent: 1
- - uid: 483
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,0.5
- parent: 1
- - uid: 484
- components:
- - type: Transform
- pos: 2.5,-0.5
- parent: 1
- - uid: 485
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 1
- - uid: 486
- components:
- - type: Transform
- pos: 1.5,-0.5
- parent: 1
- - uid: 487
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 1
- - uid: 488
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,19.5
- parent: 1
- - uid: 489
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,19.5
- parent: 1
-- proto: ChairWood
- entities:
- - uid: 490
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,13.5
- parent: 1
- - uid: 491
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,11.5
- parent: 1
- - uid: 492
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,12.5
- parent: 1
- - uid: 493
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,13.5
- parent: 1
- - uid: 494
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,13.5
- parent: 1
- - uid: 495
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,12.5
- parent: 1
- - uid: 496
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,11.5
- parent: 1
-- proto: ChemDispenser
- entities:
- - uid: 497
- components:
- - type: Transform
- pos: -1.5,-5.5
- parent: 1
- - uid: 498
- components:
- - type: Transform
- pos: -4.5,-5.5
- parent: 1
-- proto: ChemMaster
- entities:
- - uid: 499
- components:
- - type: Transform
- pos: -1.5,-4.5
- parent: 1
- - uid: 500
- components:
- - type: Transform
- pos: -1.5,-4.5
- parent: 1
- - uid: 501
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 1
-- proto: ChessBoard
- entities:
- - uid: 502
- components:
- - type: Transform
- pos: 5.488845,11.735779
- parent: 1
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 503
- components:
- - type: Transform
- pos: -6.5,-1.5
- parent: 1
- - uid: 504
- components:
- - type: Transform
- pos: 8.5,1.5
- parent: 1
-- proto: ClosetEmergencyN2FilledRandom
- entities:
- - uid: 505
- components:
- - type: Transform
- pos: 0.5,-12.5
- parent: 1
-- proto: ClosetFireFilled
- entities:
- - uid: 506
- components:
- - type: Transform
- pos: 7.5,1.5
- parent: 1
- - uid: 507
- components:
- - type: Transform
- pos: -5.5,-1.5
- parent: 1
-- proto: ClosetMaintenance
- entities:
- - uid: 508
- components:
- - type: Transform
- pos: 3.5,-9.5
- parent: 1
- - uid: 509
- components:
- - type: Transform
- pos: 3.5,-10.5
- parent: 1
-- proto: ClosetRadiationSuitFilled
- entities:
- - uid: 510
- components:
- - type: Transform
- pos: -5.5,11.5
- parent: 1
-- proto: ClothingBackpackDuffelSurgeryFilled
- entities:
- - uid: 511
- components:
- - type: Transform
- pos: 3.4963648,-12.314699
- parent: 1
-- proto: ClothingBackpackWaterTank
- entities:
- - uid: 3
- components:
- - type: MetaData
- name: ранцевый кислотный резервуар
- - type: Transform
- parent: 2
- - type: SolutionAmmoProvider
- maxShots: 400
- shots: 400
- - type: SolutionContainerManager
- solutions: null
- containers:
- - tank
- - type: Physics
- canCollide: False
- - type: ContainerContainer
- containers:
- solution@tank: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 4
- item: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: InsideEntityStorage
- - uid: 5
- components:
- - type: MetaData
- name: ранцевый зажигательный резервуар
- - type: Transform
- parent: 2
- - type: SolutionAmmoProvider
- maxShots: 600
- shots: 600
- - type: SolutionContainerManager
- solutions: null
- containers:
- - tank
- - type: Physics
- canCollide: False
- - type: ContainerContainer
- containers:
- solution@tank: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 6
- item: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: InsideEntityStorage
-- proto: ClothingBeltMilitaryWebbing
- entities:
- - uid: 513
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 514
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 515
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 516
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingMaskBreathMedicalSecurity
- entities:
- - uid: 526
- components:
- - type: Transform
- parent: 525
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingNeckMantleERTLeader
- entities:
- - uid: 533
- components:
- - type: Transform
- parent: 532
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterHardsuitCBURNLeader
- entities:
- - uid: 527
- components:
- - type: Transform
- parent: 525
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesBootsMag
- entities:
- - uid: 517
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 518
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 519
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 520
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 521
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 522
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 523
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 524
- components:
- - type: Transform
- parent: 512
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesBootsMagAdv
- entities:
- - uid: 528
- components:
- - type: Transform
- parent: 525
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ComputerComms
- entities:
- - uid: 536
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,18.5
- parent: 1
-- proto: ComputerIFF
- entities:
- - uid: 537
- components:
- - type: Transform
- pos: 1.5,20.5
- parent: 1
- - uid: 538
- components:
- - type: Transform
- pos: 1.5,20.5
- parent: 1
-- proto: ComputerRadar
- entities:
- - uid: 539
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,18.5
- parent: 1
-- proto: ComputerShuttle
- entities:
- - uid: 540
- components:
- - type: Transform
- pos: 0.5,20.5
- parent: 1
-- proto: CowToolboxFilled
- entities:
- - uid: 541
- components:
- - type: Transform
- pos: -3.2846913,10.190828
- parent: 1
-- proto: CrateArtifactContainer
- entities:
- - uid: 542
- components:
- - type: Transform
- pos: -3.5,13.5
- parent: 1
- - uid: 543
- components:
- - type: Transform
- pos: -4.5,13.5
- parent: 1
-- proto: CrateCommandSecure
- entities:
- - uid: 512
- components:
- - type: Transform
- anchored: True
- pos: 4.5,7.5
- parent: 1
- - type: Physics
- bodyType: Static
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 524
- - 523
- - 522
- - 521
- - 520
- - 519
- - 518
- - 517
- - 513
- - 514
- - 515
- - 516
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateEngineeringJetpack
- entities:
- - uid: 544
- components:
- - type: Transform
- pos: -1.5,13.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 548
- - 552
- - 551
- - 547
- - 550
- - 546
- - 545
- - 549
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateEngineeringSecure
- entities:
- - uid: 553
- components:
- - type: Transform
- pos: -3.5,11.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 566
- - 565
- - 564
- - 563
- - 562
- - 557
- - 556
- - 555
- - 554
- - 558
- - 560
- - 561
- - 559
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateFoodMRE
- entities:
- - uid: 567
- components:
- - type: Transform
- pos: -2.5,9.5
- parent: 1
-- proto: CrateGenericSteel
- entities:
- - uid: 281
- components:
- - type: Transform
- pos: -2.5,13.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8856695
- - 7.0937095
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 287
- - 286
- - 285
- - 284
- - 283
- - 282
- - 291
- - 289
- - 293
- - 288
- - 290
- - 292
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateServiceJanitorialSupplies
- entities:
- - uid: 568
- components:
- - type: Transform
- pos: -1.5,9.5
- parent: 1
-- proto: CrateWeaponSecure
- entities:
- - uid: 2
- components:
- - type: Transform
- anchored: True
- pos: 5.5,7.5
- parent: 1
- - type: Physics
- bodyType: Static
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 10
- - 9
- - 8
- - 7
- - 3
- - 5
- - 11
- - 12
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: Crematorium
- entities:
- - uid: 569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-13.5
- parent: 1
-- proto: DefibrillatorCabinetFilled
- entities:
- - uid: 570
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-11.5
- parent: 1
-- proto: DisposalBend
- entities:
- - uid: 571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-13.5
- parent: 1
- - uid: 572
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-13.5
- parent: 1
- - uid: 573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,9.5
- parent: 1
-- proto: DisposalJunction
- entities:
- - uid: 574
- components:
- - type: Transform
- pos: 0.5,-9.5
- parent: 1
- - uid: 575
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 1
-- proto: DisposalJunctionFlipped
- entities:
- - uid: 576
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 1
-- proto: DisposalPipe
- entities:
- - uid: 577
- components:
- - type: Transform
- pos: -0.5,-14.5
- parent: 1
- - uid: 578
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-10.5
- parent: 1
- - uid: 579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-12.5
- parent: 1
- - uid: 580
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-11.5
- parent: 1
- - uid: 581
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-9.5
- parent: 1
- - uid: 582
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 1
- - uid: 583
- components:
- - type: Transform
- pos: 0.5,-8.5
- parent: 1
- - uid: 584
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 1
- - uid: 585
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 1
- - uid: 586
- components:
- - type: Transform
- pos: 0.5,-3.5
- parent: 1
- - uid: 587
- components:
- - type: Transform
- pos: 0.5,-4.5
- parent: 1
- - uid: 588
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 1
- - uid: 589
- components:
- - type: Transform
- pos: 0.5,-2.5
- parent: 1
- - uid: 590
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 1
- - uid: 591
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-1.5
- parent: 1
- - uid: 592
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-1.5
- parent: 1
- - uid: 593
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-1.5
- parent: 1
- - uid: 594
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-1.5
- parent: 1
- - uid: 595
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-1.5
- parent: 1
- - uid: 596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-1.5
- parent: 1
- - uid: 597
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-1.5
- parent: 1
- - uid: 598
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,1.5
- parent: 1
- - uid: 599
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,1.5
- parent: 1
- - uid: 600
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,1.5
- parent: 1
- - uid: 601
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,1.5
- parent: 1
- - uid: 602
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,1.5
- parent: 1
- - uid: 603
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,1.5
- parent: 1
- - uid: 604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,2.5
- parent: 1
- - uid: 605
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,4.5
- parent: 1
- - uid: 606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,5.5
- parent: 1
- - uid: 607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,6.5
- parent: 1
- - uid: 608
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,3.5
- parent: 1
- - uid: 609
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,8.5
- parent: 1
- - uid: 610
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,7.5
- parent: 1
- - uid: 611
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,9.5
- parent: 1
- - uid: 612
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,9.5
- parent: 1
- - uid: 613
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,9.5
- parent: 1
- - uid: 614
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,9.5
- parent: 1
- - uid: 615
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,9.5
- parent: 1
-- proto: DisposalTrunk
- entities:
- - uid: 616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-9.5
- parent: 1
- - uid: 617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,1.5
- parent: 1
- - uid: 618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-1.5
- parent: 1
- - uid: 619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,9.5
- parent: 1
-- proto: DisposalUnit
- entities:
- - uid: 620
- components:
- - type: Transform
- pos: -1.5,-9.5
- parent: 1
- - uid: 621
- components:
- - type: Transform
- pos: 6.5,9.5
- parent: 1
- - uid: 622
- components:
- - type: Transform
- pos: -6.5,1.5
- parent: 1
- - uid: 623
- components:
- - type: Transform
- pos: 8.5,-1.5
- parent: 1
-- proto: DoubleEmergencyNitrogenTankFilled
- entities:
- - uid: 529
- components:
- - type: Transform
- parent: 525
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
-- proto: DoubleEmergencyOxygenTankFilled
- entities:
- - uid: 530
- components:
- - type: Transform
- parent: 525
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
-- proto: DoubleGlassAirlock
- entities:
- - uid: 624
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-0.5
- parent: 1
- - uid: 625
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-0.5
- parent: 1
- - uid: 626
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 1
- - uid: 627
- components:
- - type: Transform
- pos: 0.5,-3.5
- parent: 1
-- proto: DrinkBeerCan
- entities:
- - uid: 628
- components:
- - type: Transform
- pos: 5.461067,13.1579075
- parent: 1
- - uid: 629
- components:
- - type: Transform
- pos: 5.6277337,13.282778
- parent: 1
-- proto: DrinkSodaWaterBottleFull
- entities:
- - uid: 630
- components:
- - type: Transform
- pos: 4.7753534,9.58325
- parent: 1
- - uid: 631
- components:
- - type: Transform
- pos: 4.9420204,9.576313
- parent: 1
-- proto: ExtinguisherCabinetFilled
- entities:
- - uid: 632
- components:
- - type: Transform
- pos: -7.5,1.5
- parent: 1
- - uid: 633
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-1.5
- parent: 1
- - uid: 634
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,12.5
- parent: 1
- - uid: 635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-9.5
- parent: 1
-- proto: FaxMachineBase
- entities:
- - uid: 636
- components:
- - type: Transform
- pos: 3.5,16.5
- parent: 1
- - type: FaxMachine
- name: РХБЗ
-- proto: FireAxeCabinetOpen
- entities:
- - uid: 637
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,6.5
- parent: 1
- - type: Openable
- opened: False
- - type: ContainerContainer
- containers:
- ItemCabinet: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 638
-- proto: FireAxeFlaming
- entities:
- - uid: 638
- components:
- - type: Transform
- parent: 637
- - type: Physics
- canCollide: False
-- proto: Firelock
- entities:
- - uid: 639
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,11.5
- parent: 1
- - uid: 640
- components:
- - type: Transform
- pos: 2.5,-6.5
- parent: 1
- - uid: 641
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,6.5
- parent: 1
- - uid: 642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,10.5
- parent: 1
- - uid: 643
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,6.5
- parent: 1
- - uid: 644
- components:
- - type: Transform
- pos: -0.5,-10.5
- parent: 1
- - uid: 645
- components:
- - type: Transform
- pos: 1.5,-11.5
- parent: 1
-- proto: FirelockGlass
- entities:
- - uid: 646
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,10.5
- parent: 1
- - uid: 647
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,0.5
- parent: 1
- - uid: 648
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-0.5
- parent: 1
- - uid: 649
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,0.5
- parent: 1
- - uid: 650
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-0.5
- parent: 1
- - uid: 651
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,0.5
- parent: 1
- - uid: 652
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-0.5
- parent: 1
- - uid: 653
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,0.5
- parent: 1
- - uid: 654
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-0.5
- parent: 1
- - uid: 655
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,3.5
- parent: 1
- - uid: 656
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 1
- - uid: 657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-3.5
- parent: 1
- - uid: 658
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-3.5
- parent: 1
- - uid: 659
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 1
-- proto: FloorDrain
- entities:
- - uid: 660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-13.5
- parent: 1
- - type: Fixtures
- fixtures: {}
- - uid: 661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-6.5
- parent: 1
- - type: Fixtures
- fixtures: {}
- - uid: 662
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,12.5
- parent: 1
- - type: Fixtures
- fixtures: {}
-- proto: FoodBowlBig
- entities:
- - uid: 664
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 665
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodBoxDonkpocketCarp
- entities:
- - uid: 688
- components:
- - type: Transform
- pos: 4.4385796,9.658739
- parent: 1
-- proto: FoodCarrot
- entities:
- - uid: 666
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 667
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodCondimentPacketSalt
- entities:
- - uid: 668
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 669
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodContainerEgg
- entities:
- - uid: 670
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodFrozenSundae
- entities:
- - uid: 671
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodPizzaPineappleSlice
- entities:
- - uid: 672
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodPotato
- entities:
- - uid: 673
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 674
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 675
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 676
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 677
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FoodTomato
- entities:
- - uid: 678
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 679
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 680
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 681
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 682
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: Fork
- entities:
- - uid: 683
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: FuelDispenser
- entities:
- - uid: 689
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,3.5
- parent: 1
-- proto: GasFilterFlipped
- entities:
- - uid: 690
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 691
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,5.5
- parent: 1
- - type: VentCrawTube
- connected: True
-- proto: GasMixer
- entities:
- - uid: 692
- components:
- - type: Transform
- pos: -2.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
-- proto: GasPassiveVent
- entities:
- - uid: 693
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,3.5
- parent: 1
- - type: VentCrawTube
- connected: True
-- proto: GasPipeBend
- entities:
- - uid: 694
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 695
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 696
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 697
- components:
- - type: Transform
- pos: -3.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 698
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 699
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 700
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 701
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 702
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 703
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,15.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 704
- components:
- - type: Transform
- pos: 2.5,15.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 705
- components:
- - type: Transform
- pos: 3.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 706
- components:
- - type: Transform
- pos: 7.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 707
- components:
- - type: Transform
- pos: 5.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 708
- components:
- - type: Transform
- pos: 4.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 709
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 710
- components:
- - type: Transform
- pos: -2.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 713
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 715
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 716
- components:
- - type: Transform
- pos: 4.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 718
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 719
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 720
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 721
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 722
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 723
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 724
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-13.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasPipeFourway
- entities:
- - uid: 725
- components:
- - type: Transform
- pos: 1.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 726
- components:
- - type: Transform
- pos: 1.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 727
- components:
- - type: Transform
- pos: 0.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 728
- components:
- - type: Transform
- pos: 0.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 729
- components:
- - type: Transform
- pos: 1.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 730
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 731
- components:
- - type: Transform
- pos: 1.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 732
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasPipeStraight
- entities:
- - uid: 733
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 734
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 740
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 741
- components:
- - type: Transform
- pos: -0.5,14.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 742
- components:
- - type: Transform
- pos: -0.5,13.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 743
- components:
- - type: Transform
- pos: -0.5,12.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 744
- components:
- - type: Transform
- pos: -0.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 745
- components:
- - type: Transform
- pos: 0.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 749
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 751
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,12.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 755
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 756
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 757
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,13.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 758
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,14.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 759
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,8.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 762
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 763
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 764
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 765
- components:
- - type: Transform
- pos: 5.5,5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 766
- components:
- - type: Transform
- pos: 5.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 767
- components:
- - type: Transform
- pos: 1.5,8.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 768
- components:
- - type: Transform
- pos: 1.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 769
- components:
- - type: Transform
- pos: 1.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 770
- components:
- - type: Transform
- pos: 1.5,9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 771
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 772
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 774
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 775
- components:
- - type: Transform
- pos: 1.5,2.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 776
- components:
- - type: Transform
- pos: 1.5,5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 777
- components:
- - type: Transform
- pos: 1.5,3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 778
- components:
- - type: Transform
- pos: 1.5,4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 779
- components:
- - type: Transform
- pos: 0.5,-2.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 780
- components:
- - type: Transform
- pos: 0.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 781
- components:
- - type: Transform
- pos: 0.5,5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 782
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 783
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 784
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 785
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 786
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 787
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 792
- components:
- - type: Transform
- pos: -5.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 795
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 800
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 801
- components:
- - type: Transform
- pos: 8.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 808
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 809
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 810
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-2.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 811
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 813
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 814
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 815
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 816
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-8.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 818
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 820
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 821
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-3.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 822
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 824
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-8.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 825
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-8.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 827
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 828
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 829
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 830
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 831
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 834
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 835
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 836
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 837
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 838
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 839
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 840
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 841
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-8.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 842
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 843
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-8.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 844
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 845
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 846
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 847
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-12.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 848
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 850
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 851
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 854
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasPipeTJunction
- entities:
- - uid: 855
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 856
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 857
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 858
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 859
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 860
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 863
- components:
- - type: Transform
- pos: 4.5,-7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 864
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasPort
- entities:
- - uid: 865
- components:
- - type: Transform
- pos: -2.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - uid: 866
- components:
- - type: Transform
- pos: -3.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
-- proto: GasPressurePump
- entities:
- - uid: 867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,7.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 868
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,6.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasVentPump
- entities:
- - uid: 869
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 870
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 15
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 871
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 15
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,15.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 15
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 873
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 15
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 874
- components:
- - type: Transform
- pos: 7.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 14
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 875
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 14
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 876
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 14
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 877
- components:
- - type: Transform
- pos: -2.5,-4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 13
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 878
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-11.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 13
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 879
- components:
- - type: Transform
- pos: 5.5,-5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 13
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-13.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 13
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 881
- components:
- - type: Transform
- pos: 1.5,12.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 14
- - type: AtmosPipeColor
- color: '#0000FFFF'
-- proto: GasVentScrubber
- entities:
- - uid: 882
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 15
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 883
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 15
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 884
- components:
- - type: Transform
- pos: 0.5,12.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 14
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 885
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 15
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 886
- components:
- - type: Transform
- pos: 8.5,1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 14
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 887
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-1.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 14
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 888
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 14
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 889
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-9.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 13
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 890
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: DeviceNetwork
- deviceLists:
- - 13
- - uid: 891
- components:
- - type: Transform
- pos: -3.5,-4.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 13
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 892
- components:
- - type: Transform
- pos: 3.5,-5.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 13
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-10.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 13
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 894
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,15.5
- parent: 1
- - type: VentCrawTube
- connected: True
- - type: DeviceNetwork
- deviceLists:
- - 15
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GeneratorRTG
- entities:
- - uid: 895
- components:
- - type: Transform
- pos: -1.5,4.5
- parent: 1
- - type: CMExplosionEffect
- - uid: 896
- components:
- - type: Transform
- pos: -1.5,5.5
- parent: 1
- - type: CMExplosionEffect
- - uid: 897
- components:
- - type: Transform
- pos: -4.5,4.5
- parent: 1
- - type: CMExplosionEffect
- - uid: 898
- components:
- - type: Transform
- pos: -4.5,5.5
- parent: 1
- - type: CMExplosionEffect
-- proto: GeneratorWallmountAPU
- entities:
- - uid: 899
- components:
- - type: Transform
- pos: -3.5,8.5
- parent: 1
- - type: CMExplosionEffect
- - uid: 900
- components:
- - type: Transform
- pos: -2.5,8.5
- parent: 1
- - type: CMExplosionEffect
- - uid: 901
- components:
- - type: Transform
- pos: -5.5,6.5
- parent: 1
- - type: CMExplosionEffect
-- proto: GravityGeneratorMini
- entities:
- - uid: 902
- components:
- - type: Transform
- pos: -4.5,7.5
- parent: 1
-- proto: GrenadeIncendiary
- entities:
- - uid: 7
- components:
- - type: Transform
- parent: 2
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 8
- components:
- - type: Transform
- parent: 2
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 9
- components:
- - type: Transform
- parent: 2
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 10
- components:
- - type: Transform
- parent: 2
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: Grille
- entities:
- - uid: 903
- components:
- - type: Transform
- pos: 0.5,21.5
- parent: 1
- - uid: 904
- components:
- - type: Transform
- pos: 5.5,14.5
- parent: 1
- - uid: 905
- components:
- - type: Transform
- pos: 2.5,11.5
- parent: 1
- - uid: 906
- components:
- - type: Transform
- pos: 2.5,9.5
- parent: 1
- - uid: 907
- components:
- - type: Transform
- pos: -2.5,-8.5
- parent: 1
- - uid: 908
- components:
- - type: Transform
- pos: -1.5,18.5
- parent: 1
- - uid: 909
- components:
- - type: Transform
- pos: 3.5,18.5
- parent: 1
- - uid: 910
- components:
- - type: Transform
- pos: 1.5,21.5
- parent: 1
-- proto: GunSafe
- entities:
- - uid: 81
- components:
- - type: Transform
- pos: 3.5,5.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 92
- - 99
- - 82
- - 100
- - 87
- - 98
- - 97
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 101
- components:
- - type: Transform
- pos: 3.5,4.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 107
- - 104
- - 105
- - 106
- - 103
- - 108
- - 102
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 532
- components:
- - type: Transform
- pos: -1.5,16.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 533
- - 534
- - 535
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 911
- components:
- - type: Transform
- pos: 6.5,5.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 915
- - 912
- - 913
- - 914
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 916
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 929
- - 923
- - 928
- - 921
- - 920
- - 919
- - 918
- - 926
- - 925
- - 917
- - 931
- - 930
- - 927
- - 922
- - 924
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: Gyroscope
- entities:
- - uid: 932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-2.5
- parent: 1
- - uid: 933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,2.5
- parent: 1
- - uid: 934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,2.5
- parent: 1
- - uid: 935
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-2.5
- parent: 1
-- proto: HighSecCentralCommandLocked
- entities:
- - uid: 936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,6.5
- parent: 1
-- proto: HoloprojectorField
- entities:
- - uid: 554
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 555
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 556
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 557
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: Hypospray
- entities:
- - uid: 66
- components:
- - type: Transform
- parent: 63
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: JetpackMiniFilled
- entities:
- - uid: 531
- components:
- - type: Transform
- parent: 525
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
-- proto: KitchenKnife
- entities:
- - uid: 937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.474956,12.512747
- parent: 1
-- proto: KitchenMicrowave
- entities:
- - uid: 938
- components:
- - type: Transform
- pos: 5.5,9.5
- parent: 1
- - type: CMExplosionEffect
-- proto: KitchenReagentGrinder
- entities:
- - uid: 939
- components:
- - type: Transform
- pos: -4.5,-4.5
- parent: 1
-- proto: KoboldCubeBox
- entities:
- - uid: 940
- components:
- - type: Transform
- pos: 5.3839216,-12.395567
- parent: 1
-- proto: LiquidNitrogenCanister
- entities:
- - uid: 941
- components:
- - type: Transform
- pos: -3.5,7.5
- parent: 1
-- proto: LiquidOxygenCanister
- entities:
- - uid: 942
- components:
- - type: Transform
- pos: -2.5,7.5
- parent: 1
-- proto: LockerChemistryFilled
- entities:
- - uid: 63
- components:
- - type: Transform
- pos: -2.5,-7.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 65
- - 66
- - 67
- - 64
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerFreezerBase
- entities:
- - uid: 663
- components:
- - type: Transform
- pos: 3.5,9.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 667
- - 685
- - 666
- - 684
- - 670
- - 679
- - 678
- - 680
- - 681
- - 673
- - 682
- - 674
- - 675
- - 676
- - 677
- - 668
- - 669
- - 671
- - 672
- - 687
- - 686
- - 664
- - 665
- - 683
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerMedicineFilled
- entities:
- - uid: 943
- components:
- - type: Transform
- pos: -2.5,-9.5
- parent: 1
-- proto: MachineAPE
- entities:
- - uid: 944
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,10.5
- parent: 1
- - uid: 945
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,9.5
- parent: 1
-- proto: MachineArtifactCrusher
- entities:
- - uid: 946
- components:
- - type: Transform
- pos: -5.5,13.5
- parent: 1
-- proto: MagazineLightRifleIncendiary
- entities:
- - uid: 83
- components:
- - type: Transform
- parent: 82
- - type: Physics
- canCollide: False
- - uid: 84
- components:
- - type: Transform
- parent: 82
- - type: Physics
- canCollide: False
- - uid: 85
- components:
- - type: Transform
- parent: 82
- - type: Physics
- canCollide: False
- - uid: 86
- components:
- - type: Transform
- parent: 82
- - type: Physics
- canCollide: False
- - uid: 88
- components:
- - type: Transform
- parent: 87
- - type: Physics
- canCollide: False
- - uid: 89
- components:
- - type: Transform
- parent: 87
- - type: Physics
- canCollide: False
- - uid: 90
- components:
- - type: Transform
- parent: 87
- - type: Physics
- canCollide: False
- - uid: 91
- components:
- - type: Transform
- parent: 87
- - type: Physics
- canCollide: False
- - uid: 93
- components:
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - uid: 94
- components:
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - uid: 95
- components:
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - uid: 96
- components:
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
-- proto: MagazineVP70
- entities:
- - uid: 917
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 918
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 919
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 920
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 921
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 922
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 923
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 924
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 925
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 926
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MedicalBed
- entities:
- - uid: 947
- components:
- - type: Transform
- pos: -5.5,-11.5
- parent: 1
- - uid: 948
- components:
- - type: Transform
- pos: -5.5,-12.5
- parent: 1
- - uid: 949
- components:
- - type: Transform
- pos: -5.5,-10.5
- parent: 1
-- proto: MedkitAdvancedFilled
- entities:
- - uid: 950
- components:
- - type: Transform
- pos: -1.566479,-12.5622425
- parent: 1
- - uid: 951
- components:
- - type: Transform
- pos: -1.3364747,-12.557619
- parent: 1
-- proto: MedkitBruteFilled
- entities:
- - uid: 952
- components:
- - type: Transform
- pos: -2.177698,-13.408583
- parent: 1
- - uid: 953
- components:
- - type: Transform
- pos: -2.1962163,-13.26059
- parent: 1
-- proto: MedkitBurnFilled
- entities:
- - uid: 954
- components:
- - type: Transform
- pos: -2.6962163,-13.246716
- parent: 1
- - uid: 955
- components:
- - type: Transform
- pos: -2.6962163,-13.403959
- parent: 1
-- proto: MedkitCombatFilled
- entities:
- - uid: 956
- components:
- - type: Transform
- pos: -1.4356332,-12.358751
- parent: 1
-- proto: MedkitFilled
- entities:
- - uid: 957
- components:
- - type: Transform
- pos: -3.5610538,-13.422459
- parent: 1
- - uid: 958
- components:
- - type: Transform
- pos: -3.570313,-13.255964
- parent: 1
- - uid: 959
- components:
- - type: Transform
- pos: -3.206656,-13.26059
- parent: 1
- - uid: 960
- components:
- - type: Transform
- pos: -3.1973968,-13.422459
- parent: 1
-- proto: MedkitOxygenFilled
- entities:
- - uid: 961
- components:
- - type: Transform
- pos: -1.7248998,-13.337391
- parent: 1
- - uid: 962
- components:
- - type: Transform
- pos: -1.2961028,-13.33596
- parent: 1
-- proto: MedkitRadiationFilled
- entities:
- - uid: 963
- components:
- - type: Transform
- pos: -1.5851052,-13.089472
- parent: 1
- - uid: 964
- components:
- - type: Transform
- pos: -1.3026977,-13.089472
- parent: 1
-- proto: MedkitToxinFilled
- entities:
- - uid: 965
- components:
- - type: Transform
- pos: -1.5938773,-12.922977
- parent: 1
- - uid: 966
- components:
- - type: Transform
- pos: -1.3160994,-12.922977
- parent: 1
-- proto: MonkeyCubeBox
- entities:
- - uid: 967
- components:
- - type: Transform
- pos: 5.9116993,-12.409441
- parent: 1
-- proto: Morgue
- entities:
- - uid: 968
- components:
- - type: Transform
- pos: 6.5,-9.5
- parent: 1
- - uid: 969
- components:
- - type: Transform
- pos: 5.5,-9.5
- parent: 1
- - uid: 970
- components:
- - type: Transform
- pos: 7.5,-9.5
- parent: 1
- - uid: 971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-11.5
- parent: 1
- - uid: 972
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-11.5
- parent: 1
- - uid: 973
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-11.5
- parent: 1
- - uid: 974
- components:
- - type: Transform
- pos: 6.5,-6.5
- parent: 1
- - uid: 975
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-5.5
- parent: 1
- - uid: 976
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-8.5
- parent: 1
- - uid: 977
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-5.5
- parent: 1
- - uid: 978
- components:
- - type: Transform
- pos: 5.5,-6.5
- parent: 1
- - uid: 979
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-8.5
- parent: 1
- - uid: 980
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-5.5
- parent: 1
- - uid: 981
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-4.5
- parent: 1
-- proto: NitrogenTankFilled
- entities:
- - uid: 545
- components:
- - type: Transform
- parent: 544
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
- - uid: 546
- components:
- - type: Transform
- parent: 544
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
- - uid: 547
- components:
- - type: Transform
- parent: 544
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
- - uid: 548
- components:
- - type: Transform
- parent: 544
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
-- proto: OperatingTable
- entities:
- - uid: 982
- components:
- - type: Transform
- pos: 3.5,-11.5
- parent: 1
-- proto: OxygenTankFilled
- entities:
- - uid: 549
- components:
- - type: Transform
- parent: 544
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
- - uid: 550
- components:
- - type: Transform
- parent: 544
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
- - uid: 551
- components:
- - type: Transform
- parent: 544
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
- - uid: 552
- components:
- - type: Transform
- parent: 544
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
-- proto: PartRodMetal
- entities:
- - uid: 285
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 286
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 287
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: PenCentcom
- entities:
- - uid: 983
- components:
- - type: Transform
- pos: 3.4193358,15.783569
- parent: 1
-- proto: PortableRecharger
- entities:
- - uid: 534
- components:
- - type: Transform
- parent: 532
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: PottedPlantRandom
- entities:
- - uid: 984
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,1.5
- parent: 1
- - uid: 985
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-1.5
- parent: 1
- - uid: 986
- components:
- - type: Transform
- pos: 4.5,1.5
- parent: 1
- - uid: 987
- components:
- - type: Transform
- pos: 4.5,-1.5
- parent: 1
- - uid: 988
- components:
- - type: Transform
- pos: -2.5,-1.5
- parent: 1
- - uid: 989
- components:
- - type: Transform
- pos: -2.5,1.5
- parent: 1
-- proto: PowerCellMicroreactor
- entities:
- - uid: 558
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
- - uid: 559
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: CMExplosionEffect
-- proto: PowerCellRecharger
- entities:
- - uid: 990
- components:
- - type: Transform
- pos: -5.5,-9.5
- parent: 1
-- proto: Poweredlight
- entities:
- - uid: 991
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-1.5
- parent: 1
- - uid: 992
- components:
- - type: Transform
- pos: 7.5,1.5
- parent: 1
- - uid: 993
- components:
- - type: Transform
- pos: -2.5,-4.5
- parent: 1
- - uid: 994
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-13.5
- parent: 1
- - uid: 995
- components:
- - type: Transform
- pos: -1.5,-9.5
- parent: 1
- - uid: 996
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-7.5
- parent: 1
- - uid: 997
- components:
- - type: Transform
- pos: 6.5,-4.5
- parent: 1
- - uid: 998
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,4.5
- parent: 1
- - uid: 999
- components:
- - type: Transform
- pos: 4.5,7.5
- parent: 1
- - uid: 1000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,9.5
- parent: 1
- - uid: 1001
- components:
- - type: Transform
- pos: 6.5,13.5
- parent: 1
- - uid: 1002
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,9.5
- parent: 1
- - uid: 1003
- components:
- - type: Transform
- pos: -1.5,13.5
- parent: 1
- - uid: 1004
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,18.5
- parent: 1
- - uid: 1005
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,18.5
- parent: 1
-- proto: PoweredSmallLight
- entities:
- - uid: 1006
- components:
- - type: Transform
- pos: -1.5,2.5
- parent: 1
- - uid: 1007
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-2.5
- parent: 1
- - uid: 1008
- components:
- - type: Transform
- pos: -10.5,0.5
- parent: 1
- - uid: 1009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-0.5
- parent: 1
- - uid: 1010
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-2.5
- parent: 1
- - uid: 1011
- components:
- - type: Transform
- pos: 3.5,2.5
- parent: 1
- - uid: 1012
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,12.5
- parent: 1
- - uid: 1013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,7.5
- parent: 1
- - uid: 1014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-5.5
- parent: 1
- - uid: 1015
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-10.5
- parent: 1
- - uid: 1016
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-13.5
- parent: 1
- - uid: 1017
- components:
- - type: Transform
- pos: -2.5,7.5
- parent: 1
- - uid: 1018
- components:
- - type: Transform
- pos: 2.5,16.5
- parent: 1
- - uid: 1019
- components:
- - type: Transform
- pos: -0.5,16.5
- parent: 1
- - uid: 1020
- components:
- - type: Transform
- pos: 0.5,-12.5
- parent: 1
- - uid: 1021
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-10.5
- parent: 1
-- proto: Railing
- entities:
- - uid: 1022
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-0.5
- parent: 1
- - uid: 1023
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,0.5
- parent: 1
- - uid: 1024
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-0.5
- parent: 1
- - uid: 1025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,0.5
- parent: 1
- - uid: 1026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-2.5
- parent: 1
- - uid: 1027
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,2.5
- parent: 1
- - uid: 1028
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-2.5
- parent: 1
- - uid: 1029
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,2.5
- parent: 1
- - uid: 1030
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,7.5
- parent: 1
- - uid: 1031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,7.5
- parent: 1
- - uid: 1032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,4.5
- parent: 1
- - uid: 1033
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,4.5
- parent: 1
- - uid: 1034
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-12.5
- parent: 1
- - uid: 1035
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-11.5
- parent: 1
- - uid: 1036
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-9.5
- parent: 1
-- proto: RailingCorner
- entities:
- - uid: 1037
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-1.5
- parent: 1
- - uid: 1038
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,1.5
- parent: 1
- - uid: 1039
- components:
- - type: Transform
- pos: 6.5,1.5
- parent: 1
- - uid: 1040
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-1.5
- parent: 1
- - uid: 1041
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,5.5
- parent: 1
- - uid: 1042
- components:
- - type: Transform
- pos: -4.5,7.5
- parent: 1
- - uid: 1043
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,5.5
- parent: 1
-- proto: RandomHumanoidSpawnerCBURNUnit
- entities:
- - uid: 1044
- components:
- - type: Transform
- pos: 2.5,0.5
- parent: 1
- - uid: 1045
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 1
- - uid: 1046
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 1
- - uid: 1047
- components:
- - type: Transform
- pos: 0.5,19.5
- parent: 1
- - uid: 1048
- components:
- - type: Transform
- pos: -0.5,0.5
- parent: 1
- - uid: 1049
- components:
- - type: Transform
- pos: 1.5,0.5
- parent: 1
- - uid: 1050
- components:
- - type: Transform
- pos: 2.5,-0.5
- parent: 1
- - uid: 1051
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 1
- - uid: 1052
- components:
- - type: Transform
- pos: 1.5,-0.5
- parent: 1
-- proto: ReagentContainerFlour
- entities:
- - uid: 684
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ReagentContainerRice
- entities:
- - uid: 685
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ReinforcedWindow
- entities:
- - uid: 1053
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,18.5
- parent: 1
- - uid: 1054
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,18.5
- parent: 1
- - uid: 1055
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,21.5
- parent: 1
- - uid: 1056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-8.5
- parent: 1
- - uid: 1057
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,21.5
- parent: 1
- - uid: 1058
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,11.5
- parent: 1
- - uid: 1059
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,9.5
- parent: 1
- - uid: 1060
- components:
- - type: Transform
- pos: 5.5,14.5
- parent: 1
-- proto: RubberStampCentcom
- entities:
- - uid: 1061
- components:
- - type: MetaData
- name: печать РХБЗ
- - type: Transform
- pos: 3.638994,15.596851
- parent: 1
- - type: Stamp
- stampedName: РХБЗ
-- proto: SecurityTechFab
- entities:
- - uid: 1062
- components:
- - type: Transform
- pos: 3.5,7.5
- parent: 1
-- proto: SheetGlass
- entities:
- - uid: 288
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 289
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: SheetPlastic
- entities:
- - uid: 290
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 291
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: SheetSteel
- entities:
- - uid: 292
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 293
- components:
- - type: Transform
- parent: 281
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ShuttersNormal
- entities:
- - uid: 1063
- components:
- - type: Transform
- pos: -0.5,11.5
- parent: 1
- - uid: 1064
- components:
- - type: Transform
- pos: -0.5,10.5
- parent: 1
- - uid: 1065
- components:
- - type: Transform
- pos: 1.5,-13.5
- parent: 1
-- proto: SignalButton
- entities:
- - uid: 1066
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,10.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 1063:
- - Pressed: Toggle
- 1064:
- - Pressed: Toggle
- - uid: 1067
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,9.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 1064:
- - Pressed: Toggle
- 1063:
- - Pressed: Toggle
- - uid: 1068
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,19.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 53:
- - Pressed: Toggle
- 54:
- - Pressed: Toggle
- 55:
- - Pressed: Toggle
- 56:
- - Pressed: Toggle
- - uid: 1069
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,13.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 52:
- - Pressed: Toggle
- - uid: 1070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-12.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 1065:
- - Pressed: Toggle
- - uid: 1071
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-1.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 23:
- - Pressed: DoorBolt
- 22:
- - Pressed: DoorBolt
- - uid: 1072
- components:
- - type: Transform
- pos: 9.5,1.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 20:
- - Pressed: DoorBolt
- 21:
- - Pressed: DoorBolt
- - uid: 1073
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,14.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 16:
- - Pressed: DoorBolt
- 17:
- - Pressed: DoorBolt
-- proto: Sink
- entities:
- - uid: 1074
- components:
- - type: Transform
- pos: -3.5,-4.5
- parent: 1
- - uid: 1075
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,10.5
- parent: 1
-- proto: SinkWide
- entities:
- - uid: 1076
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,12.5
- parent: 1
-- proto: SmartFridge
- entities:
- - uid: 1077
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 1
-- proto: Spoon
- entities:
- - uid: 686
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: SprayBottleWater
- entities:
- - uid: 1078
- components:
- - type: Transform
- pos: 6.7367487,-12.48646
- parent: 1
-- proto: StairStageDark
- entities:
- - uid: 1079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-0.5
- parent: 1
- - uid: 1080
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,0.5
- parent: 1
- - uid: 1081
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,0.5
- parent: 1
- - uid: 1082
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-0.5
- parent: 1
- - uid: 1083
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,4.5
- parent: 1
- - uid: 1084
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,4.5
- parent: 1
- - uid: 1085
- components:
- - type: Transform
- pos: 0.5,-4.5
- parent: 1
- - uid: 1086
- components:
- - type: Transform
- pos: 1.5,-4.5
- parent: 1
- - uid: 1087
- components:
- - type: Transform
- pos: 0.5,13.5
- parent: 1
- - uid: 1088
- components:
- - type: Transform
- pos: 1.5,13.5
- parent: 1
-- proto: StasisBed
- entities:
- - uid: 1089
- components:
- - type: Transform
- pos: -1.5,-11.5
- parent: 1
-- proto: SubstationWallBasic
- entities:
- - uid: 1090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,3.5
- parent: 1
- - type: CMExplosionEffect
-- proto: SuitStorageBase
- entities:
- - uid: 525
- components:
- - type: Transform
- pos: -1.5,15.5
- parent: 1
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 526
- - 528
- - 529
- - 530
- - 531
- - 527
-- proto: Table
- entities:
- - uid: 1091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,9.5
- parent: 1
- - uid: 1092
- components:
- - type: Transform
- pos: -3.5,10.5
- parent: 1
-- proto: TableCarpet
- entities:
- - uid: 1093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,13.5
- parent: 1
- - uid: 1094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,12.5
- parent: 1
- - uid: 1095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,11.5
- parent: 1
-- proto: TableReinforced
- entities:
- - uid: 1096
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-8.5
- parent: 1
- - uid: 1097
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-7.5
- parent: 1
- - uid: 1098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-12.5
- parent: 1
- - uid: 1099
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-12.5
- parent: 1
- - uid: 1100
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-12.5
- parent: 1
- - uid: 1101
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 1
-- proto: TableReinforcedGlass
- entities:
- - uid: 1102
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-4.5
- parent: 1
- - uid: 1103
- components:
- - type: Transform
- pos: -5.5,-9.5
- parent: 1
- - uid: 1104
- components:
- - type: Transform
- pos: -2.5,-13.5
- parent: 1
- - uid: 1105
- components:
- - type: Transform
- pos: -1.5,-13.5
- parent: 1
- - uid: 1106
- components:
- - type: Transform
- pos: -1.5,-12.5
- parent: 1
- - uid: 1107
- components:
- - type: Transform
- pos: -3.5,-13.5
- parent: 1
-- proto: TableWood
- entities:
- - uid: 1108
- components:
- - type: Transform
- pos: 3.5,16.5
- parent: 1
- - uid: 1109
- components:
- - type: Transform
- pos: 3.5,15.5
- parent: 1
- - uid: 1110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,9.5
- parent: 1
- - uid: 1111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,9.5
- parent: 1
-- proto: Thruster
- entities:
- - uid: 1112
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-2.5
- parent: 1
- - uid: 1113
- components:
- - type: Transform
- pos: -8.5,2.5
- parent: 1
- - uid: 1114
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-3.5
- parent: 1
- - uid: 1115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,4.5
- parent: 1
- - uid: 1116
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,3.5
- parent: 1
- - uid: 1117
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-4.5
- parent: 1
- - uid: 1118
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-2.5
- parent: 1
- - uid: 1119
- components:
- - type: Transform
- pos: -9.5,2.5
- parent: 1
- - uid: 1120
- components:
- - type: Transform
- pos: 10.5,2.5
- parent: 1
- - uid: 1121
- components:
- - type: Transform
- pos: 11.5,2.5
- parent: 1
- - uid: 1122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-4.5
- parent: 1
- - uid: 1123
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-3.5
- parent: 1
- - uid: 1124
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-15.5
- parent: 1
- - uid: 1125
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-15.5
- parent: 1
- - uid: 1126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-15.5
- parent: 1
- - uid: 1127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-15.5
- parent: 1
- - uid: 1128
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-2.5
- parent: 1
- - uid: 1129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-2.5
- parent: 1
- - uid: 1130
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,4.5
- parent: 1
- - uid: 1131
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,3.5
- parent: 1
-- proto: VariantCubeBox
- entities:
- - uid: 687
- components:
- - type: Transform
- parent: 663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: VendingMachineBooze
- entities:
- - uid: 1132
- components:
- - type: Transform
- pos: 7.5,9.5
- parent: 1
-- proto: VendingMachineChemicals
- entities:
- - uid: 1133
- components:
- - type: Transform
- pos: -1.5,-7.5
- parent: 1
-- proto: VendingMachineCigs
- entities:
- - uid: 1134
- components:
- - type: Transform
- pos: 1.5,-9.5
- parent: 1
-- proto: VendingMachineCoffee
- entities:
- - uid: 1135
- components:
- - type: Transform
- pos: 1.5,-8.5
- parent: 1
-- proto: VendingMachineGames
- entities:
- - uid: 1136
- components:
- - type: Transform
- pos: 3.5,13.5
- parent: 1
-- proto: VendingMachineMedical
- entities:
- - uid: 1137
- components:
- - type: Transform
- pos: -5.5,-13.5
- parent: 1
-- proto: VendingMachineRestockChemVend
- entities:
- - uid: 67
- components:
- - type: Transform
- parent: 63
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: VendingMachineSec
- entities:
- - uid: 1138
- components:
- - type: Transform
- pos: 6.5,7.5
- parent: 1
-- proto: VendingMachineYouTool
- entities:
- - uid: 1139
- components:
- - type: Transform
- pos: -1.5,7.5
- parent: 1
-- proto: WallReinforced
- entities:
- - uid: 1140
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,8.5
- parent: 1
- - uid: 1141
- components:
- - type: Transform
- pos: -2.5,-3.5
- parent: 1
- - uid: 1142
- components:
- - type: Transform
- pos: 5.5,-3.5
- parent: 1
- - uid: 1143
- components:
- - type: Transform
- pos: 4.5,-3.5
- parent: 1
- - uid: 1144
- components:
- - type: Transform
- pos: 3.5,-3.5
- parent: 1
- - uid: 1145
- components:
- - type: Transform
- pos: 2.5,-3.5
- parent: 1
- - uid: 1146
- components:
- - type: Transform
- pos: -3.5,-3.5
- parent: 1
- - uid: 1147
- components:
- - type: Transform
- pos: -1.5,3.5
- parent: 1
- - uid: 1148
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 1
- - uid: 1149
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 1
- - uid: 1150
- components:
- - type: Transform
- pos: 4.5,3.5
- parent: 1
- - uid: 1151
- components:
- - type: Transform
- pos: -2.5,3.5
- parent: 1
- - uid: 1152
- components:
- - type: Transform
- pos: -0.5,3.5
- parent: 1
- - uid: 1153
- components:
- - type: Transform
- pos: -3.5,3.5
- parent: 1
- - uid: 1154
- components:
- - type: Transform
- pos: -3.5,2.5
- parent: 1
- - uid: 1155
- components:
- - type: Transform
- pos: -3.5,1.5
- parent: 1
- - uid: 1156
- components:
- - type: Transform
- pos: -0.5,-3.5
- parent: 1
- - uid: 1157
- components:
- - type: Transform
- pos: -1.5,-3.5
- parent: 1
- - uid: 1158
- components:
- - type: Transform
- pos: -3.5,-2.5
- parent: 1
- - uid: 1159
- components:
- - type: Transform
- pos: -3.5,-1.5
- parent: 1
- - uid: 1160
- components:
- - type: Transform
- pos: 5.5,-1.5
- parent: 1
- - uid: 1161
- components:
- - type: Transform
- pos: 5.5,1.5
- parent: 1
- - uid: 1162
- components:
- - type: Transform
- pos: 5.5,2.5
- parent: 1
- - uid: 1163
- components:
- - type: Transform
- pos: 5.5,3.5
- parent: 1
- - uid: 1164
- components:
- - type: Transform
- pos: 5.5,-2.5
- parent: 1
- - uid: 1165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-14.5
- parent: 1
- - uid: 1166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-13.5
- parent: 1
- - uid: 1167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-14.5
- parent: 1
- - uid: 1168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 1
- - uid: 1169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,8.5
- parent: 1
- - uid: 1170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,8.5
- parent: 1
- - uid: 1171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-8.5
- parent: 1
- - uid: 1172
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,9.5
- parent: 1
- - uid: 1173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,8.5
- parent: 1
- - uid: 1174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-4.5
- parent: 1
- - uid: 1175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-9.5
- parent: 1
- - uid: 1176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,4.5
- parent: 1
- - uid: 1177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,1.5
- parent: 1
- - uid: 1178
- components:
- - type: Transform
- pos: 2.5,5.5
- parent: 1
- - uid: 1179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,7.5
- parent: 1
- - uid: 1180
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,8.5
- parent: 1
- - uid: 1181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-1.5
- parent: 1
- - uid: 1182
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-3.5
- parent: 1
- - uid: 1183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,1.5
- parent: 1
- - uid: 1184
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-8.5
- parent: 1
- - uid: 1185
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-4.5
- parent: 1
- - uid: 1186
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-6.5
- parent: 1
- - uid: 1187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-5.5
- parent: 1
- - uid: 1188
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-1.5
- parent: 1
- - uid: 1189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,8.5
- parent: 1
- - uid: 1190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,7.5
- parent: 1
- - uid: 1191
- components:
- - type: Transform
- pos: -0.5,5.5
- parent: 1
- - uid: 1192
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,1.5
- parent: 1
- - uid: 1193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,4.5
- parent: 1
- - uid: 1194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-7.5
- parent: 1
- - uid: 1195
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-8.5
- parent: 1
- - uid: 1196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-7.5
- parent: 1
- - uid: 1197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-8.5
- parent: 1
- - uid: 1198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-10.5
- parent: 1
- - uid: 1199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-9.5
- parent: 1
- - uid: 1200
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-11.5
- parent: 1
- - uid: 1201
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-13.5
- parent: 1
- - uid: 1202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-9.5
- parent: 1
- - uid: 1203
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-12.5
- parent: 1
- - uid: 1204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,1.5
- parent: 1
- - uid: 1205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-3.5
- parent: 1
- - uid: 1206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-4.5
- parent: 1
- - uid: 1207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-6.5
- parent: 1
- - uid: 1208
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-5.5
- parent: 1
- - uid: 1209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-11.5
- parent: 1
- - uid: 1210
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-8.5
- parent: 1
- - uid: 1211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-14.5
- parent: 1
- - uid: 1212
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-14.5
- parent: 1
- - uid: 1213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-14.5
- parent: 1
- - uid: 1214
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-9.5
- parent: 1
- - uid: 1215
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-10.5
- parent: 1
- - uid: 1216
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-11.5
- parent: 1
- - uid: 1217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-12.5
- parent: 1
- - uid: 1218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-13.5
- parent: 1
- - uid: 1219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-14.5
- parent: 1
- - uid: 1220
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-14.5
- parent: 1
- - uid: 1221
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-14.5
- parent: 1
- - uid: 1222
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-14.5
- parent: 1
- - uid: 1223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-14.5
- parent: 1
- - uid: 1224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-13.5
- parent: 1
- - uid: 1225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,9.5
- parent: 1
- - uid: 1226
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,8.5
- parent: 1
- - uid: 1227
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,7.5
- parent: 1
- - uid: 1228
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,6.5
- parent: 1
- - uid: 1229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,5.5
- parent: 1
- - uid: 1230
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,4.5
- parent: 1
- - uid: 1231
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,3.5
- parent: 1
- - uid: 1232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-1.5
- parent: 1
- - uid: 1233
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,8.5
- parent: 1
- - uid: 1234
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,8.5
- parent: 1
- - uid: 1235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,8.5
- parent: 1
- - uid: 1236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,8.5
- parent: 1
- - uid: 1237
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,8.5
- parent: 1
- - uid: 1238
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,7.5
- parent: 1
- - uid: 1239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,6.5
- parent: 1
- - uid: 1240
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,5.5
- parent: 1
- - uid: 1241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,4.5
- parent: 1
- - uid: 1242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,3.5
- parent: 1
- - uid: 1243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-1.5
- parent: 1
- - uid: 1244
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-2.5
- parent: 1
- - uid: 1245
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-2.5
- parent: 1
- - uid: 1246
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-2.5
- parent: 1
- - uid: 1247
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,2.5
- parent: 1
- - uid: 1248
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-1.5
- parent: 1
- - uid: 1249
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,2.5
- parent: 1
- - uid: 1250
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-1.5
- parent: 1
- - uid: 1251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-2.5
- parent: 1
- - uid: 1252
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-13.5
- parent: 1
- - uid: 1253
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,11.5
- parent: 1
- - uid: 1254
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,12.5
- parent: 1
- - uid: 1255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,13.5
- parent: 1
- - uid: 1256
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,10.5
- parent: 1
- - uid: 1257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,12.5
- parent: 1
- - uid: 1258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,13.5
- parent: 1
- - uid: 1259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,14.5
- parent: 1
- - uid: 1260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,14.5
- parent: 1
- - uid: 1261
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,14.5
- parent: 1
- - uid: 1262
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,14.5
- parent: 1
- - uid: 1263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,14.5
- parent: 1
- - uid: 1264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,14.5
- parent: 1
- - uid: 1265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,9.5
- parent: 1
- - uid: 1266
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,10.5
- parent: 1
- - uid: 1267
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,11.5
- parent: 1
- - uid: 1268
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,12.5
- parent: 1
- - uid: 1269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,13.5
- parent: 1
- - uid: 1270
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,14.5
- parent: 1
- - uid: 1271
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,14.5
- parent: 1
- - uid: 1272
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,14.5
- parent: 1
- - uid: 1273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,14.5
- parent: 1
- - uid: 1274
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,14.5
- parent: 1
- - uid: 1275
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,12.5
- parent: 1
- - uid: 1276
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,13.5
- parent: 1
- - uid: 1277
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,1.5
- parent: 1
- - uid: 1278
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,2.5
- parent: 1
- - uid: 1279
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-2.5
- parent: 1
- - uid: 1280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,2.5
- parent: 1
- - uid: 1281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,1.5
- parent: 1
- - uid: 1282
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,2.5
- parent: 1
- - uid: 1283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-2.5
- parent: 1
- - uid: 1284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,2.5
- parent: 1
- - uid: 1285
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-1.5
- parent: 1
- - uid: 1286
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-1.5
- parent: 1
- - uid: 1287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,1.5
- parent: 1
- - uid: 1288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,1.5
- parent: 1
- - uid: 1289
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,1.5
- parent: 1
- - uid: 1290
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-1.5
- parent: 1
- - uid: 1291
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,1.5
- parent: 1
- - uid: 1292
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-1.5
- parent: 1
- - uid: 1293
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-3.5
- parent: 1
- - uid: 1294
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-3.5
- parent: 1
- - uid: 1295
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,3.5
- parent: 1
- - uid: 1296
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,3.5
- parent: 1
- - uid: 1297
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,15.5
- parent: 1
- - uid: 1298
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,16.5
- parent: 1
- - uid: 1299
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,15.5
- parent: 1
- - uid: 1300
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,16.5
- parent: 1
- - uid: 1301
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,17.5
- parent: 1
- - uid: 1302
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,17.5
- parent: 1
- - uid: 1303
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,17.5
- parent: 1
- - uid: 1304
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,17.5
- parent: 1
- - uid: 1305
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,19.5
- parent: 1
- - uid: 1306
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,19.5
- parent: 1
- - uid: 1307
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,19.5
- parent: 1
- - uid: 1308
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,19.5
- parent: 1
- - uid: 1309
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,20.5
- parent: 1
- - uid: 1310
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,20.5
- parent: 1
- - uid: 1311
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-12.5
- parent: 1
- - uid: 1312
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-11.5
- parent: 1
- - uid: 1313
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-5.5
- parent: 1
- - uid: 1314
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-7.5
- parent: 1
- - uid: 1315
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-5.5
- parent: 1
- - uid: 1316
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-7.5
- parent: 1
- - uid: 1317
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-12.5
- parent: 1
- - uid: 1318
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-10.5
- parent: 1
- - uid: 1319
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-11.5
- parent: 1
-- proto: WallReinforcedDiagonal
- entities:
- - uid: 1320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,2.5
- parent: 1
- - uid: 1321
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-15.5
- parent: 1
- - uid: 1322
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-15.5
- parent: 1
- - uid: 1323
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-14.5
- parent: 1
- - uid: 1324
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-14.5
- parent: 1
- - uid: 1325
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-14.5
- parent: 1
- - uid: 1326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-14.5
- parent: 1
- - uid: 1327
- components:
- - type: Transform
- pos: -6.5,-8.5
- parent: 1
- - uid: 1328
- components:
- - type: Transform
- pos: -6.5,5.5
- parent: 1
- - uid: 1329
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-5.5
- parent: 1
- - uid: 1330
- components:
- - type: Transform
- pos: -10.5,2.5
- parent: 1
- - uid: 1331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,2.5
- parent: 1
- - uid: 1332
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-2.5
- parent: 1
- - uid: 1333
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-5.5
- parent: 1
- - uid: 1334
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-15.5
- parent: 1
- - uid: 1335
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-8.5
- parent: 1
- - uid: 1336
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-15.5
- parent: 1
- - uid: 1337
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-2.5
- parent: 1
- - uid: 1338
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-2.5
- parent: 1
- - uid: 1339
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,2.5
- parent: 1
- - uid: 1340
- components:
- - type: Transform
- pos: 4.5,-2.5
- parent: 1
- - uid: 1341
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,5.5
- parent: 1
- - uid: 1342
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,8.5
- parent: 1
- - uid: 1343
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,8.5
- parent: 1
- - uid: 1344
- components:
- - type: Transform
- pos: -6.5,14.5
- parent: 1
- - uid: 1345
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,14.5
- parent: 1
- - uid: 1346
- components:
- - type: Transform
- pos: -2.5,17.5
- parent: 1
- - uid: 1347
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,21.5
- parent: 1
- - uid: 1348
- components:
- - type: Transform
- pos: -0.5,21.5
- parent: 1
- - uid: 1349
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,17.5
- parent: 1
- - uid: 1350
- components:
- - type: Transform
- pos: -5.5,15.5
- parent: 1
- - uid: 1351
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,15.5
- parent: 1
- - uid: 1352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,15.5
- parent: 1
- - uid: 1353
- components:
- - type: Transform
- pos: 6.5,15.5
- parent: 1
-- proto: WallWeaponCapacitorRecharger
- entities:
- - uid: 1354
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-1.5
- parent: 1
- - uid: 1355
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,1.5
- parent: 1
- - uid: 1356
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-1.5
- parent: 1
- - uid: 1357
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,1.5
- parent: 1
-- proto: WarpPoint
- entities:
- - uid: 1358
- components:
- - type: MetaData
- name: ЦентКом - Шаттл РХБЗЗ
- - type: Transform
- pos: 1.5,19.5
- parent: 1
-- proto: WeaponEarthGovLaserMG
- entities:
- - uid: 535
- components:
- - type: Transform
- parent: 532
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponEarthGovLaserSniper
- entities:
- - uid: 912
- components:
- - type: Transform
- parent: 911
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 913
- components:
- - type: Transform
- parent: 911
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 914
- components:
- - type: Transform
- parent: 911
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 915
- components:
- - type: Transform
- parent: 911
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponParticleDecelerator
- entities:
- - uid: 560
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 561
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 562
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 563
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 564
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 565
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponPistolCHIMP
- entities:
- - uid: 566
- components:
- - type: Transform
- parent: 553
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponPistolVP78
- entities:
- - uid: 927
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 928
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 929
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 930
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 931
- components:
- - type: Transform
- parent: 916
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponRifleAKMU
- entities:
- - uid: 98
- components:
- - type: Transform
- parent: 81
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 99
- components:
- - type: Transform
- parent: 81
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 100
- components:
- - type: Transform
- parent: 81
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponSprayNozzle
- entities:
- - uid: 11
- components:
- - type: Transform
- parent: 2
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 12
- components:
- - type: Transform
- parent: 2
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponTurretNanoTrasen
- entities:
- - uid: 1359
- components:
- - type: Transform
- pos: -4.5,1.5
- parent: 1
- - uid: 1360
- components:
- - type: Transform
- pos: 6.5,-1.5
- parent: 1
-- proto: WeaponXM1014
- entities:
- - uid: 106
- components:
- - type: Transform
- parent: 101
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 107
- components:
- - type: Transform
- parent: 101
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 108
- components:
- - type: Transform
- parent: 101
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WindoorSecureCentralCommandLocked
- entities:
- - uid: 1361
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-0.5
- parent: 1
- - uid: 1362
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,0.5
- parent: 1
- - uid: 1363
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,0.5
- parent: 1
- - uid: 1364
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-0.5
- parent: 1
- - uid: 1365
- components:
- - type: Transform
- pos: 6.5,2.5
- parent: 1
- - uid: 1366
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-2.5
- parent: 1
- - uid: 1367
- components:
- - type: Transform
- pos: -4.5,2.5
- parent: 1
- - uid: 1368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-2.5
- parent: 1
- - uid: 1369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-8.5
- parent: 1
- - uid: 1370
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 1
-- proto: WindowFrostedDirectional
- entities:
- - uid: 1371
- components:
- - type: Transform
- pos: -0.5,0.5
- parent: 1
- - uid: 1372
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 1
- - uid: 1373
- components:
- - type: Transform
- pos: 1.5,0.5
- parent: 1
- - uid: 1374
- components:
- - type: Transform
- pos: 2.5,0.5
- parent: 1
- - uid: 1375
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-0.5
- parent: 1
- - uid: 1376
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-0.5
- parent: 1
- - uid: 1377
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-0.5
- parent: 1
- - uid: 1378
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-0.5
- parent: 1
- - uid: 1379
- components:
- - type: Transform
- pos: 5.5,-11.5
- parent: 1
- - uid: 1380
- components:
- - type: Transform
- pos: 6.5,-11.5
- parent: 1
- - uid: 1381
- components:
- - type: Transform
- pos: 7.5,-11.5
- parent: 1
-- proto: WindowReinforcedDirectional
- entities:
- - uid: 1382
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,4.5
- parent: 1
- - uid: 1383
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,5.5
- parent: 1
- - uid: 1384
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 1
- - uid: 1385
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,5.5
- parent: 1
- - uid: 1386
- components:
- - type: Transform
- pos: 3.5,4.5
- parent: 1
- - uid: 1387
- components:
- - type: Transform
- pos: 3.5,5.5
- parent: 1
- - uid: 1388
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,4.5
- parent: 1
- - uid: 1389
- components:
- - type: Transform
- pos: 6.5,5.5
- parent: 1
-...
diff --git a/Resources/Maps/_Sunrise/Shuttles/dso/ert/alt_ert_big.yml b/Resources/Maps/_Sunrise/Shuttles/dso/ert/alt_ert_big.yml
index 07ef3739d1..80811c6cb1 100644
--- a/Resources/Maps/_Sunrise/Shuttles/dso/ert/alt_ert_big.yml
+++ b/Resources/Maps/_Sunrise/Shuttles/dso/ert/alt_ert_big.yml
@@ -15098,20 +15098,6 @@ entities:
parent: 515
- type: Physics
canCollide: False
-- proto: MusicTape132
- entities:
- - uid: 1468
- components:
- - type: Transform
- pos: 2.5480745,11.619652
- parent: 1
-- proto: MusicTape31
- entities:
- - uid: 1469
- components:
- - type: Transform
- pos: 2.4230745,11.760277
- parent: 1
- proto: MysteryFigureBox
entities:
- uid: 1470
diff --git a/Resources/Maps/_Sunrise/Shuttles/dso/ert/clown_ert.yml b/Resources/Maps/_Sunrise/Shuttles/dso/ert/clown_ert.yml
index cef3b47511..ad39f7acb9 100644
--- a/Resources/Maps/_Sunrise/Shuttles/dso/ert/clown_ert.yml
+++ b/Resources/Maps/_Sunrise/Shuttles/dso/ert/clown_ert.yml
@@ -2362,10 +2362,6 @@ entities:
pos: -3.9028208,-4.015589
parent: 1
- type: NetworkConfigurator
- devices:
- 'UID: 2758': invalid
- 'UID: 2759': invalid
- linkModeActive: False
- proto: Nanopaste10
entities:
- uid: 10
diff --git a/Resources/Maps/_Sunrise/Shuttles/emergency_loop.yml b/Resources/Maps/_Sunrise/Shuttles/emergency_loop.yml
index 0721e573db..48eeaa0c6a 100644
--- a/Resources/Maps/_Sunrise/Shuttles/emergency_loop.yml
+++ b/Resources/Maps/_Sunrise/Shuttles/emergency_loop.yml
@@ -1,11 +1,11 @@
meta:
format: 7
category: Grid
- engineVersion: 252.0.0
+ engineVersion: 255.1.0
forkId: sunrise_station_public
- forkVersion: 8a92da2e178d70cf28f5e780ea205d677458605e
- time: 04/18/2025 04:07:00
- entityCount: 1096
+ forkVersion: f012d89aa9d25bb6afaa8ab61174670c1ef23fd1
+ time: 05/09/2025 06:45:40
+ entityCount: 1097
maps: []
grids:
- 2
@@ -3167,6 +3167,26 @@ entities:
- type: Transform
pos: -3.5,20.5
parent: 2
+- proto: DebugGenerator
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 120
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+ - type: CMExplosionEffect
- proto: DefibrillatorCabinetFilled
entities:
- uid: 1041
@@ -3211,7 +3231,7 @@ entities:
parent: 2
- proto: DoubleGlassAirlockAtmosphericsLocked
entities:
- - uid: 120
+ - uid: 236
components:
- type: Transform
pos: -7.5,2.5
@@ -3249,7 +3269,7 @@ entities:
pos: -10.5,12.5
parent: 2
- type: Door
- secondsUntilStateChange: -2905.1365
+ secondsUntilStateChange: -3039.35
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -5061,26 +5081,6 @@ entities:
- 1039
- type: AtmosPipeColor
color: '#990000FF'
-- proto: GeneratorBasic15kW
- entities:
- - uid: 98
- components:
- - type: Transform
- pos: -1.5,1.5
- parent: 2
- - type: CMExplosionEffect
- - uid: 131
- components:
- - type: Transform
- pos: -0.5,1.5
- parent: 2
- - type: CMExplosionEffect
- - uid: 236
- components:
- - type: Transform
- pos: -2.5,1.5
- parent: 2
- - type: CMExplosionEffect
- proto: GravityGeneratorMini
entities:
- uid: 80
@@ -5509,6 +5509,20 @@ entities:
- type: Transform
pos: -4.370948,-1.3201361
parent: 2
+- proto: PlushieCoffeefox
+ entities:
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: -8.536245,17.446934
+ parent: 2
+- proto: PlushieOrangefox
+ entities:
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -7.49389,17.488602
+ parent: 2
- proto: PortableScrubber
entities:
- uid: 43
@@ -5859,7 +5873,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
543:
- - Timer: Open
+ - - Timer
+ - Open
- uid: 548
components:
- type: Transform
@@ -5868,7 +5883,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
544:
- - Timer: Open
+ - - Timer
+ - Open
- proto: SheetGlass
entities:
- uid: 122
@@ -6265,19 +6281,26 @@ entities:
- type: DeviceLinkSource
linkedPorts:
698:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
697:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
700:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
699:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
696:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
695:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
694:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 738
components:
- type: Transform
@@ -6287,21 +6310,29 @@ entities:
- type: DeviceLinkSource
linkedPorts:
745:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
744:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
743:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
742:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
741:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
739:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
746:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
740:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: SignAtmos
entities:
- uid: 47
@@ -6805,22 +6836,84 @@ entities:
- type: Transform
pos: 5.5,12.5
parent: 2
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - uid: 38
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 2
+ - uid: 41
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 2
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -14.5,11.5
+ parent: 2
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 2
- uid: 56
components:
- type: Transform
pos: 3.5,6.5
parent: 2
+ - uid: 60
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,1.5
+ parent: 2
- uid: 63
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -9.5,-3.5
parent: 2
+ - uid: 68
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 76
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 79
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 2
- uid: 82
components:
- type: Transform
pos: 5.5,8.5
parent: 2
+ - uid: 83
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,2.5
+ parent: 2
+ - uid: 100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,2.5
+ parent: 2
- uid: 101
components:
- type: Transform
@@ -6887,6 +6980,54 @@ entities:
rot: 3.141592653589793 rad
pos: 3.5,3.5
parent: 2
+ - uid: 162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,0.5
+ parent: 2
+ - uid: 163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,2.5
+ parent: 2
+ - uid: 165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-1.5
+ parent: 2
+ - uid: 171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-1.5
+ parent: 2
+ - uid: 172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,2.5
+ parent: 2
+ - uid: 182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,0.5
+ parent: 2
+ - uid: 189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 2
- uid: 190
components:
- type: Transform
@@ -6899,18 +7040,65 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,21.5
parent: 2
+ - uid: 193
+ components:
+ - type: Transform
+ pos: -15.5,11.5
+ parent: 2
- uid: 195
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -14.5,2.5
parent: 2
+ - uid: 196
+ components:
+ - type: Transform
+ pos: -12.5,11.5
+ parent: 2
+ - uid: 197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,0.5
+ parent: 2
+ - uid: 199
+ components:
+ - type: Transform
+ pos: -16.5,11.5
+ parent: 2
+ - uid: 200
+ components:
+ - type: Transform
+ pos: -10.5,11.5
+ parent: 2
+ - uid: 202
+ components:
+ - type: Transform
+ pos: -0.5,16.5
+ parent: 2
+ - uid: 203
+ components:
+ - type: Transform
+ pos: -17.5,11.5
+ parent: 2
+ - uid: 204
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 2
- uid: 205
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -15.5,2.5
parent: 2
+ - uid: 206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,19.5
+ parent: 2
- uid: 207
components:
- type: Transform
@@ -6963,6 +7151,16 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,17.5
parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+ - uid: 239
+ components:
+ - type: Transform
+ pos: -11.5,11.5
+ parent: 2
- uid: 244
components:
- type: Transform
@@ -6975,6 +7173,12 @@ entities:
rot: 3.141592653589793 rad
pos: 3.5,5.5
parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,2.5
+ parent: 2
- uid: 262
components:
- type: Transform
@@ -6987,307 +7191,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -11.5,-1.5
parent: 2
- - uid: 282
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-2.5
- parent: 2
- - uid: 283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,21.5
- parent: 2
- - uid: 286
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,21.5
- parent: 2
- - uid: 287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,21.5
- parent: 2
- - uid: 293
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,6.5
- parent: 2
- - uid: 312
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,2.5
- parent: 2
- - uid: 313
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,9.5
- parent: 2
- - uid: 320
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,7.5
- parent: 2
- - uid: 321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,2.5
- parent: 2
- - uid: 323
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,11.5
- parent: 2
- - uid: 324
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,12.5
- parent: 2
- - uid: 328
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-0.5
- parent: 2
-- proto: WallShuttleDiagonal
- entities:
- - uid: 9
- components:
- - type: Transform
- pos: -17.5,21.5
- parent: 2
- - uid: 103
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-3.5
- parent: 2
- - uid: 153
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,7.5
- parent: 2
- - uid: 209
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,1.5
- parent: 2
- - uid: 254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-3.5
- parent: 2
- - uid: 275
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,0.5
- parent: 2
- - uid: 278
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,2.5
- parent: 2
- - uid: 285
- components:
- - type: Transform
- pos: -19.5,19.5
- parent: 2
-- proto: WallShuttleInterior
- entities:
- - uid: 37
- components:
- - type: Transform
- pos: -3.5,-1.5
- parent: 2
- - uid: 38
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,2.5
- parent: 2
- - uid: 41
- components:
- - type: Transform
- pos: -3.5,0.5
- parent: 2
- - uid: 42
- components:
- - type: Transform
- pos: -14.5,11.5
- parent: 2
- - uid: 54
- components:
- - type: Transform
- pos: -3.5,-2.5
- parent: 2
- - uid: 60
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,1.5
- parent: 2
- - uid: 68
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,2.5
- parent: 2
- - uid: 76
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,0.5
- parent: 2
- - uid: 79
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,8.5
- parent: 2
- - uid: 83
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,2.5
- parent: 2
- - uid: 84
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,2.5
- parent: 2
- - uid: 100
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,2.5
- parent: 2
- - uid: 162
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,0.5
- parent: 2
- - uid: 163
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,2.5
- parent: 2
- - uid: 165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-1.5
- parent: 2
- - uid: 171
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-1.5
- parent: 2
- - uid: 172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,2.5
- parent: 2
- - uid: 182
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,2.5
- parent: 2
- - uid: 183
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,0.5
- parent: 2
- - uid: 189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,2.5
- parent: 2
- - uid: 193
- components:
- - type: Transform
- pos: -15.5,11.5
- parent: 2
- - uid: 196
- components:
- - type: Transform
- pos: -12.5,11.5
- parent: 2
- - uid: 197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,0.5
- parent: 2
- - uid: 199
- components:
- - type: Transform
- pos: -16.5,11.5
- parent: 2
- - uid: 200
- components:
- - type: Transform
- pos: -10.5,11.5
- parent: 2
- - uid: 202
- components:
- - type: Transform
- pos: -0.5,16.5
- parent: 2
- - uid: 203
- components:
- - type: Transform
- pos: -17.5,11.5
- parent: 2
- - uid: 204
- components:
- - type: Transform
- pos: -11.5,17.5
- parent: 2
- - uid: 206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,19.5
- parent: 2
- - uid: 230
- components:
- - type: Transform
- pos: -3.5,1.5
- parent: 2
- - uid: 239
- components:
- - type: Transform
- pos: -11.5,11.5
- parent: 2
- - uid: 259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,2.5
- parent: 2
- uid: 270
components:
- type: Transform
@@ -7316,6 +7219,30 @@ entities:
- type: Transform
pos: -18.5,11.5
parent: 2
+ - uid: 282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,21.5
+ parent: 2
+ - uid: 286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,21.5
+ parent: 2
+ - uid: 287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,21.5
+ parent: 2
- uid: 289
components:
- type: Transform
@@ -7334,26 +7261,74 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,2.5
parent: 2
+ - uid: 293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,6.5
+ parent: 2
- uid: 308
components:
- type: Transform
pos: -13.5,11.5
parent: 2
+ - uid: 312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,2.5
+ parent: 2
+ - uid: 313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,9.5
+ parent: 2
- uid: 316
components:
- type: Transform
pos: -11.5,18.5
parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,7.5
+ parent: 2
+ - uid: 321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,2.5
+ parent: 2
- uid: 322
components:
- type: Transform
pos: -11.5,19.5
parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,11.5
+ parent: 2
+ - uid: 324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,12.5
+ parent: 2
- uid: 327
components:
- type: Transform
pos: -11.5,20.5
parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-0.5
+ parent: 2
- uid: 331
components:
- type: Transform
@@ -7490,6 +7465,54 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,18.5
parent: 2
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -17.5,21.5
+ parent: 2
+ - uid: 103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-3.5
+ parent: 2
+ - uid: 153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,7.5
+ parent: 2
+ - uid: 209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,1.5
+ parent: 2
+ - uid: 254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,0.5
+ parent: 2
+ - uid: 278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,2.5
+ parent: 2
+ - uid: 285
+ components:
+ - type: Transform
+ pos: -19.5,19.5
+ parent: 2
- proto: WardrobeMixed
entities:
- uid: 528
diff --git a/Resources/Maps/_Sunrise/Shuttles/infiltrator.yml b/Resources/Maps/_Sunrise/Shuttles/infiltrator.yml
index 6e373d9ad7..8fca982a2e 100644
--- a/Resources/Maps/_Sunrise/Shuttles/infiltrator.yml
+++ b/Resources/Maps/_Sunrise/Shuttles/infiltrator.yml
@@ -1,6 +1,17 @@
meta:
- format: 6
- postmapinit: false
+ format: 7
+ category: Grid
+ engineVersion: 255.1.0
+ forkId: ""
+ forkVersion: ""
+ time: 05/10/2025 09:46:33
+ entityCount: 867
+maps: []
+grids:
+- 1
+orphans:
+- 1
+nullspace: []
tilemap:
0: Space
3: FloorArcadeRed
@@ -34,11 +45,11 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACWAAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAAAWQAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADWQAAAAAAaAAAAAABWAAAAAAAHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADWAAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACWAAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAAAWQAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADWQAAAAAAaAAAAAABWAAAAAAAHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADWAAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: HwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAegAAAAADegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAWAAAAAAAegAAAAAAAwAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADWAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAegAAAAADegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAWAAAAAAAegAAAAAAAwAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADWAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-2:
ind: -1,-2
@@ -582,9 +593,20 @@ entities:
- type: GasTileOverlay
- type: SpreaderGrid
- type: GridPathfinding
+- proto: ActionToggleLight
+ entities:
+ - uid: 503
+ mapInit: true
+ paused: true
+ components:
+ - type: Transform
+ parent: 502
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 502
- proto: AirlockExternalGlassShuttleSyndicateLocked
entities:
- - uid: 8
+ - uid: 2
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -592,7 +614,9 @@ entities:
parent: 1
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 10
+ missingComponents:
+ - StationAiWhitelist
+ - uid: 3
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -600,70 +624,76 @@ entities:
parent: 1
- type: DeviceLinkSink
invokeCounter: 1
+ missingComponents:
+ - StationAiWhitelist
- proto: AirlockExternalSyndicateLocked
entities:
- - uid: 3
+ - uid: 4
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -5.5,-16.5
parent: 1
- - uid: 7
+ missingComponents:
+ - StationAiWhitelist
+ - uid: 5
components:
- type: Transform
pos: -0.5,-25.5
parent: 1
- - uid: 12
+ - uid: 6
components:
- type: Transform
pos: -0.5,-22.5
parent: 1
- - uid: 473
+ - uid: 7
components:
- type: Transform
pos: 3.5,-14.5
parent: 1
- - uid: 475
+ - uid: 8
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,-10.5
parent: 1
- - uid: 483
+ - uid: 9
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,-10.5
parent: 1
- - uid: 576
+ - uid: 10
components:
- type: Transform
pos: -4.5,-14.5
parent: 1
- - uid: 599
+ - uid: 11
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,-16.5
parent: 1
+ missingComponents:
+ - StationAiWhitelist
- proto: AirlockSyndicateGlassLocked
entities:
- - uid: 4
+ - uid: 12
components:
- type: Transform
pos: -0.5,-7.5
parent: 1
- - uid: 5
+ - uid: 13
components:
- type: Transform
pos: 3.5,-22.5
parent: 1
- - uid: 6
+ - uid: 14
components:
- type: Transform
pos: -0.5,-18.5
parent: 1
- - uid: 17
+ - uid: 15
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -671,12 +701,12 @@ entities:
parent: 1
- proto: AirlockSyndicateLocked
entities:
- - uid: 15
+ - uid: 16
components:
- type: Transform
pos: -0.5,-14.5
parent: 1
- - uid: 20
+ - uid: 17
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -695,96 +725,104 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.5,-8.5
parent: 1
+- proto: APCElectronics
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
- proto: AtmosDeviceFanDirectional
entities:
- - uid: 2
+ - uid: 30
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -9.5,-16.5
parent: 1
- - uid: 9
+ - uid: 31
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,-16.5
parent: 1
- - uid: 13
+ - uid: 32
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,-10.5
parent: 1
- - uid: 14
+ - uid: 33
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,-10.5
parent: 1
- - uid: 16
+ - uid: 34
components:
- type: Transform
pos: -0.5,-25.5
parent: 1
- proto: AtmosFixNitrogenMarker
entities:
- - uid: 25
+ - uid: 35
components:
- type: Transform
pos: 5.5,-26.5
parent: 1
- - uid: 26
+ - uid: 36
components:
- type: Transform
pos: 5.5,-27.5
parent: 1
- proto: AtmosFixOxygenMarker
entities:
- - uid: 27
+ - uid: 37
components:
- type: Transform
pos: 3.5,-26.5
parent: 1
- - uid: 28
+ - uid: 38
components:
- type: Transform
pos: 3.5,-27.5
parent: 1
- proto: BannerSyndicate
entities:
- - uid: 29
+ - uid: 39
components:
- type: Transform
pos: 2.5,-15.5
parent: 1
- - uid: 30
+ - uid: 40
components:
- type: Transform
pos: -3.5,-15.5
parent: 1
- proto: Bed
entities:
- - uid: 31
+ - uid: 41
components:
- type: Transform
pos: 3.5,-3.5
parent: 1
- proto: BedsheetSyndie
entities:
- - uid: 32
+ - uid: 42
components:
- type: Transform
pos: 3.5,-3.5
parent: 1
- proto: BlastDoorOpen
entities:
- - uid: 838
+ - uid: 43
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 7.5,-16.5
parent: 1
- - uid: 839
+ - uid: 44
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -792,69 +830,82 @@ entities:
parent: 1
- proto: BorgCharger
entities:
- - uid: 21
+ - uid: 45
components:
- type: Transform
- pos: -6.5,-27.5
+ pos: -4.5,-17.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 3.5,-17.5
parent: 1
- proto: BoxEncryptionKeySyndie
entities:
- - uid: 34
+ - uid: 48
components:
- type: Transform
- parent: 33
+ parent: 47
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: BoxFlashbang
entities:
- - uid: 42
+ - uid: 57
components:
- type: Transform
pos: 0.49331844,-13.366474
parent: 1
- proto: BoxFolderNuclearCodes
entities:
- - uid: 510
+ - uid: 58
components:
- type: Transform
pos: -2.5286522,-11.44479
parent: 1
- proto: BoxHandcuff
entities:
- - uid: 43
+ - uid: 59
components:
- type: Transform
- pos: 1.4510483,-2.399527
+ pos: 1.3809162,-2.331173
parent: 1
- proto: BoxInflatable
entities:
- - uid: 663
+ - uid: 60
components:
- type: Transform
pos: 5.5530314,-23.449507
parent: 1
- proto: Brutepack
entities:
- - uid: 44
+ - uid: 61
components:
- type: Transform
pos: -3.292087,-4.1600046
parent: 1
- - uid: 45
+ - uid: 62
components:
- type: Transform
pos: -3.354587,-4.4256296
parent: 1
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
- proto: ButtonFrameExit
entities:
- - uid: 611
+ - uid: 63
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 4.5,-15.5
parent: 1
- - uid: 612
+ - uid: 64
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -862,1040 +913,983 @@ entities:
parent: 1
- proto: C4
entities:
- - uid: 46
+ - uid: 65
components:
- type: Transform
pos: 1.7857682,-12.631323
parent: 1
- - uid: 47
+ - type: CMExplosionEffect
+ - uid: 66
components:
- type: Transform
pos: 1.5045182,-12.646948
parent: 1
- - uid: 48
+ - type: CMExplosionEffect
+ - uid: 67
components:
- type: Transform
pos: 1.5982682,-12.646948
parent: 1
- - uid: 49
+ - type: CMExplosionEffect
+ - uid: 68
components:
- type: Transform
pos: 1.4107682,-12.646948
parent: 1
- - uid: 50
+ - type: CMExplosionEffect
+ - uid: 69
components:
- type: Transform
pos: 1.6920182,-12.631323
parent: 1
+ - type: CMExplosionEffect
- proto: CableApcExtension
entities:
- - uid: 51
- components:
- - type: Transform
- pos: -3.5,-18.5
- parent: 1
- - uid: 52
- components:
- - type: Transform
- pos: -3.5,-17.5
- parent: 1
- - uid: 53
- components:
- - type: Transform
- pos: -3.5,-16.5
- parent: 1
- - uid: 54
- components:
- - type: Transform
- pos: -4.5,-16.5
- parent: 1
- - uid: 55
- components:
- - type: Transform
- pos: -5.5,-16.5
- parent: 1
- - uid: 56
- components:
- - type: Transform
- pos: -6.5,-16.5
- parent: 1
- - uid: 57
- components:
- - type: Transform
- pos: -7.5,-16.5
- parent: 1
- - uid: 58
- components:
- - type: Transform
- pos: -8.5,-16.5
- parent: 1
- - uid: 59
- components:
- - type: Transform
- pos: -6.5,-15.5
- parent: 1
- - uid: 60
- components:
- - type: Transform
- pos: -6.5,-17.5
- parent: 1
- - uid: 61
- components:
- - type: Transform
- pos: -4.5,-15.5
- parent: 1
- - uid: 62
- components:
- - type: Transform
- pos: -4.5,-14.5
- parent: 1
- - uid: 63
- components:
- - type: Transform
- pos: -4.5,-13.5
- parent: 1
- - uid: 64
- components:
- - type: Transform
- pos: -4.5,-12.5
- parent: 1
- - uid: 65
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 1
- - uid: 66
- components:
- - type: Transform
- pos: -4.5,-10.5
- parent: 1
- - uid: 67
- components:
- - type: Transform
- pos: -5.5,-12.5
- parent: 1
- - uid: 68
- components:
- - type: Transform
- pos: -6.5,-12.5
- parent: 1
- - uid: 69
- components:
- - type: Transform
- pos: -2.5,-16.5
- parent: 1
- uid: 70
components:
- type: Transform
- pos: -1.5,-16.5
+ pos: -3.5,-18.5
parent: 1
- uid: 71
components:
- type: Transform
- pos: -0.5,-16.5
+ pos: -3.5,-17.5
parent: 1
- uid: 72
components:
- type: Transform
- pos: 0.5,-16.5
+ pos: -3.5,-16.5
parent: 1
- uid: 73
components:
- type: Transform
- pos: 1.5,-16.5
+ pos: -4.5,-16.5
parent: 1
- uid: 74
components:
- type: Transform
- pos: 2.5,-16.5
+ pos: -5.5,-16.5
parent: 1
- uid: 75
components:
- type: Transform
- pos: 3.5,-16.5
+ pos: -6.5,-16.5
parent: 1
- uid: 76
components:
- type: Transform
- pos: 4.5,-16.5
+ pos: -7.5,-16.5
parent: 1
- uid: 77
components:
- type: Transform
- pos: 5.5,-16.5
+ pos: -8.5,-16.5
parent: 1
- uid: 78
components:
- type: Transform
- pos: 5.5,-15.5
+ pos: -6.5,-15.5
parent: 1
- uid: 79
components:
- type: Transform
- pos: 5.5,-17.5
+ pos: -6.5,-17.5
parent: 1
- uid: 80
components:
- type: Transform
- pos: 6.5,-16.5
+ pos: -4.5,-15.5
parent: 1
- uid: 81
components:
- type: Transform
- pos: 7.5,-16.5
+ pos: -4.5,-14.5
parent: 1
- uid: 82
components:
- type: Transform
- pos: 3.5,-15.5
+ pos: -4.5,-13.5
parent: 1
- uid: 83
components:
- type: Transform
- pos: 3.5,-14.5
+ pos: -4.5,-12.5
parent: 1
- uid: 84
components:
- type: Transform
- pos: 3.5,-13.5
+ pos: -4.5,-11.5
parent: 1
- uid: 85
components:
- type: Transform
- pos: 3.5,-12.5
+ pos: -4.5,-10.5
parent: 1
- uid: 86
components:
- type: Transform
- pos: 3.5,-11.5
+ pos: -5.5,-12.5
parent: 1
- uid: 87
components:
- type: Transform
- pos: 3.5,-11.5
+ pos: -6.5,-12.5
parent: 1
- uid: 88
components:
- type: Transform
- pos: 3.5,-10.5
+ pos: -2.5,-16.5
parent: 1
- uid: 89
components:
- type: Transform
- pos: 4.5,-12.5
+ pos: -1.5,-16.5
parent: 1
- uid: 90
components:
- type: Transform
- pos: 5.5,-12.5
+ pos: -0.5,-16.5
parent: 1
- uid: 91
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: 0.5,-16.5
parent: 1
- uid: 92
components:
- type: Transform
- pos: -0.5,-7.5
+ pos: 1.5,-16.5
parent: 1
- uid: 93
components:
- type: Transform
- pos: -0.5,-8.5
+ pos: 2.5,-16.5
parent: 1
- uid: 94
components:
- type: Transform
- pos: -0.5,-9.5
+ pos: 3.5,-16.5
parent: 1
- uid: 95
components:
- type: Transform
- pos: -0.5,-10.5
+ pos: 4.5,-16.5
parent: 1
- uid: 96
components:
- type: Transform
- pos: -0.5,-11.5
+ pos: 5.5,-16.5
parent: 1
- uid: 97
components:
- type: Transform
- pos: -0.5,-12.5
+ pos: 5.5,-15.5
parent: 1
- uid: 98
components:
- type: Transform
- pos: -0.5,-13.5
+ pos: 5.5,-17.5
parent: 1
- uid: 99
components:
- type: Transform
- pos: -0.5,-14.5
+ pos: 6.5,-16.5
parent: 1
- uid: 100
components:
- type: Transform
- pos: -1.5,-12.5
+ pos: 7.5,-16.5
parent: 1
- uid: 101
components:
- type: Transform
- pos: 0.5,-12.5
+ pos: 3.5,-15.5
parent: 1
- uid: 102
components:
- type: Transform
- pos: -0.5,-5.5
+ pos: 3.5,-14.5
parent: 1
- uid: 103
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: 3.5,-13.5
parent: 1
- uid: 104
components:
- type: Transform
- pos: 1.5,-5.5
+ pos: 3.5,-12.5
parent: 1
- uid: 105
components:
- type: Transform
- pos: 2.5,-5.5
+ pos: 3.5,-11.5
parent: 1
- uid: 106
components:
- type: Transform
- pos: 3.5,-5.5
+ pos: 3.5,-11.5
parent: 1
- uid: 107
components:
- type: Transform
- pos: 3.5,-4.5
+ pos: 3.5,-10.5
parent: 1
- uid: 108
components:
- type: Transform
- pos: -0.5,-4.5
+ pos: 4.5,-12.5
parent: 1
- uid: 109
components:
- type: Transform
- pos: -0.5,-3.5
+ pos: 5.5,-12.5
parent: 1
- uid: 110
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: -0.5,-6.5
parent: 1
- uid: 111
components:
- type: Transform
- pos: 0.5,-2.5
+ pos: -0.5,-7.5
parent: 1
- uid: 112
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: -0.5,-8.5
parent: 1
- uid: 113
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: -0.5,-9.5
parent: 1
- uid: 114
components:
- type: Transform
- pos: -2.5,-2.5
+ pos: -0.5,-10.5
parent: 1
- uid: 115
components:
- type: Transform
- pos: -1.5,-4.5
+ pos: -0.5,-11.5
parent: 1
- uid: 116
components:
- type: Transform
- pos: -3.5,-4.5
+ pos: -0.5,-12.5
parent: 1
- uid: 117
components:
- type: Transform
- pos: -2.5,-4.5
+ pos: -0.5,-13.5
parent: 1
- uid: 118
components:
- type: Transform
- pos: -4.5,-4.5
+ pos: -0.5,-14.5
parent: 1
- uid: 119
components:
- type: Transform
- pos: -5.5,-4.5
+ pos: -1.5,-12.5
parent: 1
- uid: 120
components:
- type: Transform
- pos: -5.5,-5.5
+ pos: 0.5,-12.5
parent: 1
- uid: 121
components:
- type: Transform
- pos: -5.5,-6.5
+ pos: -0.5,-5.5
parent: 1
- uid: 122
components:
- type: Transform
- pos: -5.5,-3.5
+ pos: 0.5,-5.5
parent: 1
- uid: 123
components:
- type: Transform
- pos: 4.5,-4.5
+ pos: 1.5,-5.5
parent: 1
- uid: 124
components:
- type: Transform
- pos: 4.5,-3.5
+ pos: 2.5,-5.5
parent: 1
- uid: 125
components:
- type: Transform
- pos: 3.5,-6.5
+ pos: 3.5,-5.5
parent: 1
- uid: 126
components:
- type: Transform
- pos: -0.5,-17.5
+ pos: 3.5,-4.5
parent: 1
- uid: 127
components:
- type: Transform
- pos: -3.5,-20.5
+ pos: -0.5,-4.5
parent: 1
- uid: 128
components:
- type: Transform
- pos: -3.5,-19.5
+ pos: -0.5,-3.5
parent: 1
- uid: 129
components:
- type: Transform
- pos: -3.5,-21.5
+ pos: -0.5,-2.5
parent: 1
- uid: 130
components:
- type: Transform
- pos: -4.5,-21.5
+ pos: 0.5,-2.5
parent: 1
- uid: 131
components:
- type: Transform
- pos: -4.5,-22.5
+ pos: 1.5,-2.5
parent: 1
- uid: 132
components:
- type: Transform
- pos: -4.5,-23.5
+ pos: -1.5,-2.5
parent: 1
- uid: 133
components:
- type: Transform
- pos: -4.5,-24.5
+ pos: -2.5,-2.5
parent: 1
- uid: 134
components:
- type: Transform
- pos: -4.5,-25.5
+ pos: -1.5,-4.5
parent: 1
- uid: 135
components:
- type: Transform
- pos: -4.5,-25.5
+ pos: -3.5,-4.5
parent: 1
- uid: 136
components:
- type: Transform
- pos: -4.5,-26.5
+ pos: -2.5,-4.5
parent: 1
- uid: 137
components:
- type: Transform
- pos: -4.5,-27.5
+ pos: -4.5,-4.5
parent: 1
- uid: 138
components:
- type: Transform
- pos: -5.5,-27.5
+ pos: -5.5,-4.5
parent: 1
- uid: 139
components:
- type: Transform
- pos: -6.5,-27.5
+ pos: -5.5,-5.5
parent: 1
- uid: 140
components:
- type: Transform
- pos: -6.5,-26.5
+ pos: -5.5,-6.5
parent: 1
- uid: 141
components:
- type: Transform
- pos: -6.5,-25.5
+ pos: -5.5,-3.5
parent: 1
- uid: 142
components:
- type: Transform
- pos: -6.5,-24.5
+ pos: 4.5,-4.5
parent: 1
- uid: 143
components:
- type: Transform
- pos: -6.5,-23.5
+ pos: 4.5,-3.5
parent: 1
- uid: 144
components:
- type: Transform
- pos: -6.5,-22.5
+ pos: 3.5,-6.5
parent: 1
- uid: 145
components:
- type: Transform
- pos: -2.5,-20.5
+ pos: -0.5,-17.5
parent: 1
- uid: 146
components:
- type: Transform
- pos: -1.5,-20.5
+ pos: -3.5,-20.5
parent: 1
- uid: 147
components:
- type: Transform
- pos: -0.5,-20.5
+ pos: -3.5,-19.5
parent: 1
- uid: 148
components:
- type: Transform
- pos: -0.5,-21.5
+ pos: -3.5,-21.5
parent: 1
- uid: 149
components:
- type: Transform
- pos: -0.5,-23.5
+ pos: -4.5,-21.5
parent: 1
- uid: 150
components:
- type: Transform
- pos: -0.5,-22.5
+ pos: -4.5,-22.5
parent: 1
- uid: 151
components:
- type: Transform
- pos: -0.5,-24.5
+ pos: -4.5,-23.5
parent: 1
- uid: 152
components:
- type: Transform
- pos: -0.5,-25.5
+ pos: -4.5,-24.5
parent: 1
- uid: 153
components:
- type: Transform
- pos: -0.5,-19.5
+ pos: -4.5,-25.5
parent: 1
- uid: 154
components:
- type: Transform
- pos: 0.5,-20.5
+ pos: -4.5,-25.5
parent: 1
- uid: 155
components:
- type: Transform
- pos: 1.5,-20.5
+ pos: -4.5,-26.5
parent: 1
- uid: 156
components:
- type: Transform
- pos: 2.5,-20.5
+ pos: -4.5,-27.5
parent: 1
- uid: 157
components:
- type: Transform
- pos: 3.5,-20.5
+ pos: -5.5,-27.5
parent: 1
- uid: 158
components:
- type: Transform
- pos: 4.5,-20.5
+ pos: -6.5,-27.5
parent: 1
- uid: 159
components:
- type: Transform
- pos: 3.5,-21.5
+ pos: -6.5,-26.5
parent: 1
- uid: 160
components:
- type: Transform
- pos: 3.5,-22.5
+ pos: -6.5,-25.5
parent: 1
- uid: 161
components:
- type: Transform
- pos: 3.5,-23.5
+ pos: -6.5,-24.5
parent: 1
- uid: 162
components:
- type: Transform
- pos: 3.5,-24.5
+ pos: -6.5,-23.5
parent: 1
- uid: 163
components:
- type: Transform
- pos: 3.5,-25.5
+ pos: -6.5,-22.5
parent: 1
- uid: 164
components:
- type: Transform
- pos: 3.5,-26.5
+ pos: -2.5,-20.5
parent: 1
- uid: 165
components:
- type: Transform
- pos: 3.5,-27.5
+ pos: -1.5,-20.5
parent: 1
- uid: 166
components:
- type: Transform
- pos: 4.5,-27.5
+ pos: -0.5,-20.5
parent: 1
- uid: 167
components:
- type: Transform
- pos: 5.5,-27.5
+ pos: -0.5,-21.5
parent: 1
- uid: 168
components:
- type: Transform
- pos: 5.5,-26.5
+ pos: -0.5,-23.5
parent: 1
- uid: 169
components:
- type: Transform
- pos: 5.5,-25.5
+ pos: -0.5,-22.5
parent: 1
- uid: 170
components:
- type: Transform
- pos: 5.5,-24.5
+ pos: -0.5,-24.5
parent: 1
- uid: 171
components:
- type: Transform
- pos: 5.5,-23.5
+ pos: -0.5,-25.5
parent: 1
- uid: 172
components:
- type: Transform
- pos: 0.5,-8.5
+ pos: -0.5,-19.5
parent: 1
- uid: 173
components:
- type: Transform
- pos: 1.5,-26.5
+ pos: 0.5,-20.5
parent: 1
- uid: 174
components:
- type: Transform
- pos: 1.5,-8.5
+ pos: 1.5,-20.5
parent: 1
- uid: 175
components:
- type: Transform
- pos: -0.5,-26.5
+ pos: 2.5,-20.5
parent: 1
- uid: 176
components:
- type: Transform
- pos: -1.5,-26.5
+ pos: 3.5,-20.5
parent: 1
- uid: 177
components:
- type: Transform
- pos: 0.5,-26.5
+ pos: 4.5,-20.5
parent: 1
- uid: 178
components:
- type: Transform
- pos: -2.5,-26.5
+ pos: 3.5,-21.5
parent: 1
- uid: 179
components:
- type: Transform
- pos: -2.5,-27.5
+ pos: 3.5,-22.5
parent: 1
- uid: 180
components:
- type: Transform
- pos: 1.5,-27.5
+ pos: 3.5,-23.5
parent: 1
- uid: 181
components:
- type: Transform
- pos: -6.5,-28.5
+ pos: 3.5,-24.5
parent: 1
- uid: 182
components:
- type: Transform
- pos: -6.5,-29.5
+ pos: 3.5,-25.5
parent: 1
- uid: 183
components:
- type: Transform
- pos: -2.5,-28.5
+ pos: 3.5,-26.5
parent: 1
- uid: 184
components:
- type: Transform
- pos: -2.5,-29.5
+ pos: 3.5,-27.5
parent: 1
- uid: 185
components:
- type: Transform
- pos: -2.5,-30.5
+ pos: 4.5,-27.5
parent: 1
- uid: 186
components:
- type: Transform
- pos: -3.5,-30.5
+ pos: 5.5,-27.5
parent: 1
- uid: 187
components:
- type: Transform
- pos: -4.5,-30.5
+ pos: 5.5,-26.5
parent: 1
- uid: 188
components:
- type: Transform
- pos: -5.5,-30.5
+ pos: 5.5,-25.5
parent: 1
- uid: 189
components:
- type: Transform
- pos: 1.5,-28.5
+ pos: 5.5,-24.5
parent: 1
- uid: 190
components:
- type: Transform
- pos: 1.5,-29.5
+ pos: 5.5,-23.5
parent: 1
- uid: 191
components:
- type: Transform
- pos: 1.5,-30.5
+ pos: 0.5,-8.5
parent: 1
- uid: 192
components:
- type: Transform
- pos: 2.5,-30.5
+ pos: 1.5,-26.5
parent: 1
- uid: 193
components:
- type: Transform
- pos: 3.5,-30.5
+ pos: 1.5,-8.5
parent: 1
- uid: 194
components:
- type: Transform
- pos: 4.5,-30.5
+ pos: -0.5,-26.5
parent: 1
- uid: 195
components:
- type: Transform
- pos: 5.5,-28.5
+ pos: -1.5,-26.5
parent: 1
- uid: 196
components:
- type: Transform
- pos: 5.5,-29.5
+ pos: 0.5,-26.5
parent: 1
-- proto: CableHV
- entities:
- uid: 197
components:
- type: Transform
- pos: -2.5,-21.5
+ pos: -2.5,-26.5
parent: 1
- uid: 198
components:
- type: Transform
- pos: -4.5,-26.5
+ pos: -5.5,-28.5
parent: 1
- uid: 199
components:
- type: Transform
- pos: -4.5,-27.5
+ pos: -5.5,-29.5
parent: 1
- uid: 200
components:
- type: Transform
- pos: -5.5,-27.5
+ pos: 4.5,-29.5
parent: 1
- uid: 201
components:
- type: Transform
- pos: -6.5,-27.5
+ pos: 4.5,-28.5
parent: 1
+- proto: CableApcStack
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+- proto: CableHV
+ entities:
- uid: 202
components:
- type: Transform
- pos: -5.5,-23.5
+ pos: -2.5,-21.5
parent: 1
- uid: 203
components:
- type: Transform
- pos: -5.5,-22.5
+ pos: -4.5,-26.5
parent: 1
- uid: 204
components:
- type: Transform
- pos: -5.5,-20.5
+ pos: -4.5,-27.5
parent: 1
- uid: 205
components:
- type: Transform
- pos: -4.5,-20.5
+ pos: -5.5,-27.5
parent: 1
- uid: 206
components:
- type: Transform
- pos: -5.5,-19.5
+ pos: -6.5,-27.5
parent: 1
- uid: 207
components:
- type: Transform
- pos: -4.5,-19.5
+ pos: -5.5,-23.5
parent: 1
- uid: 208
components:
- type: Transform
- pos: -3.5,-19.5
+ pos: -5.5,-22.5
parent: 1
- uid: 209
components:
- type: Transform
- pos: -5.5,-21.5
+ pos: -5.5,-20.5
parent: 1
- uid: 210
components:
- type: Transform
- pos: -6.5,-26.5
+ pos: -4.5,-20.5
parent: 1
- uid: 211
components:
- type: Transform
- pos: -6.5,-25.5
+ pos: -5.5,-19.5
parent: 1
- uid: 212
components:
- type: Transform
- pos: -6.5,-24.5
+ pos: -4.5,-19.5
parent: 1
- uid: 213
components:
- type: Transform
- pos: -4.5,-23.5
+ pos: -3.5,-19.5
parent: 1
- uid: 214
components:
- type: Transform
- pos: -2.5,-20.5
+ pos: -5.5,-21.5
parent: 1
- uid: 215
components:
- type: Transform
- pos: -2.5,-19.5
+ pos: -6.5,-26.5
parent: 1
- uid: 216
components:
- type: Transform
- pos: -4.5,-25.5
+ pos: -6.5,-25.5
parent: 1
- uid: 217
components:
- type: Transform
- pos: -6.5,-23.5
+ pos: -6.5,-24.5
parent: 1
- uid: 218
components:
- type: Transform
- pos: -6.5,-20.5
+ pos: -4.5,-23.5
parent: 1
- uid: 219
components:
- type: Transform
- pos: -4.5,-24.5
+ pos: -2.5,-20.5
parent: 1
- uid: 220
components:
- type: Transform
- pos: -5.5,-18.5
+ pos: -2.5,-19.5
parent: 1
- uid: 221
components:
- type: Transform
- pos: -4.5,-18.5
+ pos: -4.5,-25.5
parent: 1
- uid: 222
components:
- type: Transform
- pos: -3.5,-18.5
+ pos: -6.5,-23.5
parent: 1
- uid: 223
components:
- type: Transform
- pos: -3.5,-21.5
+ pos: -6.5,-20.5
parent: 1
- uid: 224
+ components:
+ - type: Transform
+ pos: -4.5,-24.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: Transform
+ pos: -4.5,-18.5
+ parent: 1
+ - uid: 227
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 1
+ - uid: 228
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 1
+ - uid: 229
components:
- type: Transform
pos: -4.5,-21.5
parent: 1
- proto: CableMV
entities:
- - uid: 225
+ - uid: 230
components:
- type: Transform
pos: -3.5,-19.5
parent: 1
- - uid: 226
+ - uid: 231
components:
- type: Transform
pos: -3.5,-18.5
parent: 1
- - uid: 227
+ - uid: 232
components:
- type: Transform
pos: -3.5,-17.5
parent: 1
- - uid: 228
+ - uid: 233
components:
- type: Transform
pos: -3.5,-16.5
parent: 1
- - uid: 229
+ - uid: 234
components:
- type: Transform
pos: -2.5,-16.5
parent: 1
- - uid: 230
+ - uid: 235
components:
- type: Transform
pos: -0.5,-16.5
parent: 1
- - uid: 231
+ - uid: 236
components:
- type: Transform
pos: -1.5,-16.5
parent: 1
- - uid: 232
+ - uid: 237
components:
- type: Transform
pos: -0.5,-15.5
parent: 1
- - uid: 233
+ - uid: 238
components:
- type: Transform
pos: -0.5,-14.5
parent: 1
- - uid: 234
+ - uid: 239
components:
- type: Transform
pos: -0.5,-13.5
parent: 1
- - uid: 235
+ - uid: 240
components:
- type: Transform
pos: -0.5,-12.5
parent: 1
- - uid: 236
+ - uid: 241
components:
- type: Transform
pos: -0.5,-11.5
parent: 1
- - uid: 237
+ - uid: 242
components:
- type: Transform
pos: -0.5,-10.5
parent: 1
- - uid: 238
+ - uid: 243
components:
- type: Transform
pos: -0.5,-9.5
parent: 1
- - uid: 239
+ - uid: 244
components:
- type: Transform
pos: -0.5,-8.5
parent: 1
- - uid: 240
+ - uid: 245
components:
- type: Transform
pos: -3.5,-20.5
parent: 1
- - uid: 241
+ - uid: 246
components:
- type: Transform
pos: -3.5,-21.5
parent: 1
- - uid: 242
+ - uid: 247
components:
- type: Transform
pos: -4.5,-21.5
parent: 1
- - uid: 243
+ - uid: 248
components:
- type: Transform
pos: -4.5,-22.5
parent: 1
- - uid: 244
+ - uid: 249
components:
- type: Transform
pos: -4.5,-23.5
parent: 1
- - uid: 245
+ - uid: 250
components:
- type: Transform
pos: -4.5,-24.5
parent: 1
- - uid: 246
+ - uid: 251
components:
- type: Transform
pos: -4.5,-25.5
parent: 1
- - uid: 247
+ - uid: 252
components:
- type: Transform
pos: -4.5,-26.5
parent: 1
- - uid: 248
+ - uid: 253
components:
- type: Transform
pos: -4.5,-27.5
parent: 1
- - uid: 249
+ - uid: 254
components:
- type: Transform
pos: 1.5,-8.5
parent: 1
- - uid: 250
+ - uid: 255
components:
- type: Transform
pos: 0.5,-8.5
parent: 1
- proto: CableTerminal
entities:
- - uid: 251
+ - uid: 256
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -1905,7 +1899,7 @@ entities:
canCollide: False
- type: Fixtures
fixtures: {}
- - uid: 252
+ - uid: 257
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -1915,15 +1909,22 @@ entities:
canCollide: False
- type: Fixtures
fixtures: {}
+- proto: CameraBug
+ entities:
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 1.5840412,-2.581173
+ parent: 1
- proto: Carpet
entities:
- - uid: 253
+ - uid: 259
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 4.5,-5.5
parent: 1
- - uid: 254
+ - uid: 260
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -1931,284 +1932,296 @@ entities:
parent: 1
- proto: Catwalk
entities:
- - uid: 255
+ - uid: 261
components:
- type: Transform
pos: -2.5,-26.5
parent: 1
- - uid: 256
+ - uid: 262
components:
- type: Transform
pos: -2.5,-28.5
parent: 1
- - uid: 257
+ - uid: 263
components:
- type: Transform
pos: -8.5,-16.5
parent: 1
- - uid: 258
+ - uid: 264
components:
- type: Transform
pos: -1.5,-16.5
parent: 1
- - uid: 259
+ - uid: 265
components:
- type: Transform
pos: -2.5,-16.5
parent: 1
- - uid: 260
+ - uid: 266
components:
- type: Transform
pos: 4.5,-24.5
parent: 1
- - uid: 261
+ - uid: 267
components:
- type: Transform
pos: 5.5,-24.5
parent: 1
- - uid: 262
+ - uid: 268
components:
- type: Transform
pos: -6.5,-16.5
parent: 1
- - uid: 263
+ - uid: 269
components:
- type: Transform
pos: -7.5,-16.5
parent: 1
- - uid: 264
+ - uid: 270
components:
- type: Transform
pos: -4.5,-13.5
parent: 1
- - uid: 265
+ - uid: 271
components:
- type: Transform
pos: -4.5,-12.5
parent: 1
- - uid: 266
+ - uid: 272
components:
- type: Transform
pos: -4.5,-11.5
parent: 1
- - uid: 267
+ - uid: 273
components:
- type: Transform
pos: 3.5,-13.5
parent: 1
- - uid: 268
+ - uid: 274
components:
- type: Transform
pos: 3.5,-12.5
parent: 1
- - uid: 269
+ - uid: 275
components:
- type: Transform
pos: 3.5,-11.5
parent: 1
- - uid: 270
+ - uid: 276
components:
- type: Transform
pos: 5.5,-16.5
parent: 1
- - uid: 271
+ - uid: 277
components:
- type: Transform
pos: 6.5,-16.5
parent: 1
- - uid: 272
+ - uid: 278
components:
- type: Transform
pos: -0.5,-24.5
parent: 1
- - uid: 273
+ - uid: 279
components:
- type: Transform
pos: -0.5,-23.5
parent: 1
- - uid: 274
+ - uid: 280
components:
- type: Transform
pos: -0.5,-16.5
parent: 1
- - uid: 275
+ - uid: 281
components:
- type: Transform
pos: 5.5,-9.5
parent: 1
- - uid: 276
+ - uid: 282
components:
- type: Transform
pos: 3.5,-9.5
parent: 1
- - uid: 277
+ - uid: 283
components:
- type: Transform
pos: 0.5,-16.5
parent: 1
- - uid: 278
+ - uid: 284
components:
- type: Transform
pos: 0.5,-26.5
parent: 1
- - uid: 279
+ - uid: 285
components:
- type: Transform
pos: 1.5,-27.5
parent: 1
- - uid: 280
+ - uid: 286
components:
- type: Transform
pos: -2.5,-27.5
parent: 1
- - uid: 281
+ - uid: 287
components:
- type: Transform
pos: -2.5,-29.5
parent: 1
- - uid: 282
+ - uid: 288
components:
- type: Transform
pos: 1.5,-26.5
parent: 1
- - uid: 283
+ - uid: 289
components:
- type: Transform
pos: 4.5,-9.5
parent: 1
- - uid: 284
+ - uid: 290
components:
- type: Transform
pos: -0.5,-26.5
parent: 1
- - uid: 285
+ - uid: 291
components:
- type: Transform
pos: 1.5,-28.5
parent: 1
- - uid: 286
+ - uid: 292
components:
- type: Transform
pos: 1.5,-29.5
parent: 1
- - uid: 287
+ - uid: 293
components:
- type: Transform
pos: -1.5,-26.5
parent: 1
- - uid: 288
+ - uid: 294
components:
- type: Transform
pos: -3.5,-9.5
parent: 1
- - uid: 289
+ - uid: 295
components:
- type: Transform
pos: 1.5,-16.5
parent: 1
- - uid: 290
+ - uid: 296
components:
- type: Transform
pos: 2.5,-9.5
parent: 1
- - uid: 291
+ - uid: 297
components:
- type: Transform
pos: -6.5,-9.5
parent: 1
- - uid: 292
+ - uid: 298
components:
- type: Transform
pos: -5.5,-9.5
parent: 1
- - uid: 293
+ - uid: 299
components:
- type: Transform
pos: -4.5,-9.5
parent: 1
- - uid: 294
+ - uid: 300
components:
- type: Transform
pos: 7.5,-16.5
parent: 1
- - uid: 295
+ - uid: 301
components:
- type: Transform
pos: -0.5,-13.5
parent: 1
- - uid: 296
+ - uid: 302
components:
- type: Transform
pos: -0.5,-12.5
parent: 1
- - uid: 297
+ - uid: 303
components:
- type: Transform
pos: -0.5,-11.5
parent: 1
- - uid: 477
+ - uid: 304
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -0.5,-27.5
parent: 1
- - uid: 577
+ - uid: 305
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-27.5
parent: 1
- - uid: 596
+ - uid: 306
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -2.5,-30.5
parent: 1
- - uid: 614
+ - uid: 307
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 0.5,-27.5
parent: 1
- - uid: 617
+ - uid: 308
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 1.5,-30.5
parent: 1
- - uid: 830
+ - uid: 309
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 5.5,-2.5
parent: 1
- - uid: 835
+ - uid: 310
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -6.5,-2.5
parent: 1
- - uid: 836
+ - uid: 311
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -7.5,-19.5
parent: 1
- - uid: 837
+ - uid: 312
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 6.5,-19.5
parent: 1
+ - uid: 313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-7.5
+ parent: 1
+ - uid: 314
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 1
- proto: Chair
entities:
- - uid: 298
+ - uid: 315
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,-21.5
parent: 1
- - uid: 299
+ - uid: 316
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -2216,7 +2229,7 @@ entities:
parent: 1
- proto: ChairOfficeDark
entities:
- - uid: 300
+ - uid: 317
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -2224,64 +2237,64 @@ entities:
parent: 1
- proto: ChairPilotSeat
entities:
- - uid: 22
+ - uid: 318
components:
- type: Transform
pos: -2.5,-3.5
parent: 1
- - uid: 301
+ - uid: 319
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,-21.5
parent: 1
- - uid: 302
+ - uid: 320
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,-8.5
parent: 1
- - uid: 303
+ - uid: 321
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,-9.5
parent: 1
- - uid: 304
+ - uid: 322
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,-10.5
parent: 1
- - uid: 305
+ - uid: 323
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 0.5,-8.5
parent: 1
- - uid: 306
+ - uid: 324
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 0.5,-10.5
parent: 1
- - uid: 307
+ - uid: 325
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 0.5,-9.5
parent: 1
- - uid: 308
+ - uid: 326
components:
- type: Transform
pos: -2.5,-15.5
parent: 1
- - uid: 311
+ - uid: 327
components:
- type: Transform
pos: 1.5,-15.5
parent: 1
- - uid: 312
+ - uid: 328
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -2289,108 +2302,117 @@ entities:
parent: 1
- proto: CigPackSyndicate
entities:
- - uid: 313
+ - uid: 329
components:
- type: Transform
pos: -3.5658307,-17.516623
parent: 1
- proto: ClothingBackpackDuffelSyndicateFilledMedical
entities:
- - uid: 314
+ - uid: 331
components:
- type: Transform
pos: -3.5044222,-6.293252
parent: 1
- proto: ClothingBeltSyndieWebbing
entities:
- - uid: 315
+ - uid: 332
components:
- type: Transform
pos: -3.1789289,-17.408112
parent: 1
- proto: ClothingHeadHatSyndieMAA
entities:
- - uid: 35
+ - uid: 49
components:
- type: Transform
- parent: 33
+ parent: 47
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: ClothingHeadPyjamaSyndicateRed
entities:
- - uid: 36
+ - uid: 50
components:
- type: Transform
- parent: 33
+ parent: 47
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: ClothingHeadsetAltSyndicate
entities:
- - uid: 316
+ - uid: 333
components:
- type: Transform
pos: 1.6614302,-13.037029
parent: 1
- proto: ClothingMaskGasSyndicate
entities:
- - uid: 317
+ - uid: 334
components:
- type: Transform
pos: 0.94071925,-13.482027
parent: 1
- proto: ClothingNeckMantleHOS
entities:
- - uid: 37
+ - uid: 51
components:
- type: MetaData
desc: Looted from a fallen enemy, the commander earned this in battle.
name: commander mantle
- type: Transform
- parent: 33
+ parent: 47
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: ClothingOuterCoatSyndieCap
entities:
- - uid: 38
+ - uid: 52
components:
- type: Transform
- parent: 33
+ parent: 47
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitSyndieCommanderBiocode
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ parent: 47
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: ClothingUniformJumpskirtSyndieFormalDress
entities:
- - uid: 39
+ - uid: 54
components:
- type: Transform
- parent: 33
+ parent: 47
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: ClothingUniformJumpsuitPyjamaSyndicateRed
entities:
- - uid: 40
+ - uid: 55
components:
- type: Transform
- parent: 33
+ parent: 47
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: ClothingUniformJumpsuitSyndieFormal
entities:
- - uid: 41
+ - uid: 56
components:
- type: Transform
- parent: 33
+ parent: 47
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: ComfyChair
entities:
- - uid: 318
+ - uid: 335
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2398,7 +2420,7 @@ entities:
parent: 1
- proto: computerBodyScanner
entities:
- - uid: 319
+ - uid: 336
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -2406,7 +2428,7 @@ entities:
parent: 1
- proto: ComputerIFFSyndicate
entities:
- - uid: 320
+ - uid: 337
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2414,7 +2436,7 @@ entities:
parent: 1
- proto: ComputerPowerMonitoring
entities:
- - uid: 321
+ - uid: 338
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2422,28 +2444,29 @@ entities:
parent: 1
- proto: ComputerRadar
entities:
- - uid: 322
+ - uid: 339
components:
- type: Transform
pos: 0.5,-2.5
parent: 1
- proto: ComputerShuttleSyndie
entities:
- - uid: 323
+ - uid: 340
components:
- type: Transform
pos: -0.5,-2.5
parent: 1
- proto: CrowbarRed
entities:
- - uid: 324
+ - uid: 23
components:
- type: Transform
- pos: -3.492848,-22.485775
- parent: 1
+ parent: 20
+ - type: Physics
+ canCollide: False
- proto: DefibrillatorCabinetFilled
entities:
- - uid: 843
+ - uid: 341
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -2451,7 +2474,7 @@ entities:
parent: 1
- proto: DisposalBend
entities:
- - uid: 325
+ - uid: 342
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -2459,7 +2482,7 @@ entities:
parent: 1
- proto: DisposalJunction
entities:
- - uid: 326
+ - uid: 343
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2467,123 +2490,123 @@ entities:
parent: 1
- proto: DisposalPipe
entities:
- - uid: 327
+ - uid: 344
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 0.5,-6.5
parent: 1
- - uid: 328
+ - uid: 345
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -1.5,-19.5
parent: 1
- - uid: 329
+ - uid: 346
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -2.5,-19.5
parent: 1
- - uid: 330
+ - uid: 347
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -3.5,-19.5
parent: 1
- - uid: 331
+ - uid: 348
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -4.5,-19.5
parent: 1
- - uid: 332
+ - uid: 349
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -5.5,-19.5
parent: 1
- - uid: 333
+ - uid: 350
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -6.5,-19.5
parent: 1
- - uid: 334
+ - uid: 351
components:
- type: Transform
pos: -0.5,-18.5
parent: 1
- - uid: 335
+ - uid: 352
components:
- type: Transform
pos: -0.5,-17.5
parent: 1
- - uid: 336
+ - uid: 353
components:
- type: Transform
pos: -0.5,-16.5
parent: 1
- - uid: 337
+ - uid: 354
components:
- type: Transform
pos: -0.5,-15.5
parent: 1
- - uid: 338
+ - uid: 355
components:
- type: Transform
pos: -0.5,-14.5
parent: 1
- - uid: 339
+ - uid: 356
components:
- type: Transform
pos: -0.5,-13.5
parent: 1
- - uid: 340
+ - uid: 357
components:
- type: Transform
pos: -0.5,-12.5
parent: 1
- - uid: 341
+ - uid: 358
components:
- type: Transform
pos: -0.5,-11.5
parent: 1
- - uid: 342
+ - uid: 359
components:
- type: Transform
pos: -0.5,-10.5
parent: 1
- - uid: 343
+ - uid: 360
components:
- type: Transform
pos: -0.5,-9.5
parent: 1
- - uid: 344
+ - uid: 361
components:
- type: Transform
pos: -0.5,-8.5
parent: 1
- - uid: 345
+ - uid: 362
components:
- type: Transform
pos: -0.5,-7.5
parent: 1
- proto: DisposalTrunk
entities:
- - uid: 346
+ - uid: 363
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,-6.5
parent: 1
- - uid: 347
+ - uid: 364
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -7.5,-19.5
parent: 1
- - uid: 348
+ - uid: 365
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2591,133 +2614,125 @@ entities:
parent: 1
- proto: DisposalUnit
entities:
- - uid: 349
+ - uid: 366
components:
- type: Transform
pos: 1.5,-6.5
parent: 1
- - uid: 350
+ - uid: 367
components:
- type: Transform
pos: 0.5,-19.5
parent: 1
- proto: DoubleEmergencyOxygenTankFilled
entities:
- - uid: 351
+ - uid: 368
components:
- type: Transform
- pos: -1.6924903,-23.407444
+ pos: 4.3434353,-12.377274
parent: 1
- - uid: 352
+ - type: CMExplosionEffect
+ - uid: 369
components:
- type: Transform
- pos: -1.4112403,-23.458082
+ pos: -5.6253147,-12.385086
parent: 1
- - uid: 353
+ - type: CMExplosionEffect
+ - uid: 370
components:
- type: Transform
pos: 5.390987,-17.346693
parent: 1
- - uid: 354
+ - type: CMExplosionEffect
+ - uid: 371
components:
- type: Transform
pos: -6.6334953,-17.346693
parent: 1
+ - type: CMExplosionEffect
- proto: DrinkGlass
entities:
- - uid: 355
+ - uid: 372
components:
- type: Transform
pos: 2.0779252,-19.21155
parent: 1
- - uid: 356
+ - uid: 373
components:
- type: Transform
pos: 2.3123002,-19.21155
parent: 1
- proto: DrinkMugDog
entities:
- - uid: 357
+ - uid: 374
components:
- type: Transform
pos: 2.2843437,-19.542192
parent: 1
- proto: DrinkMugMetal
entities:
- - uid: 358
+ - uid: 375
components:
- type: Transform
pos: 2.0968437,-19.526567
parent: 1
- proto: DrinkMugRed
entities:
- - uid: 359
+ - uid: 376
components:
- type: Transform
pos: 1.9918958,-17.588755
parent: 1
- proto: DrinkVacuumFlask
entities:
- - uid: 360
+ - uid: 377
components:
- type: Transform
pos: 5.6435027,-21.180143
parent: 1
- - uid: 361
+ - uid: 378
components:
- type: Transform
pos: 5.7372527,-21.398893
parent: 1
-- proto: ExtendedEmergencyOxygenTankFilled
+- proto: FlippoLighterSunriseContractor
entities:
- - uid: 362
+ - uid: 379
components:
- type: Transform
- pos: -5.678572,-12.319441
- parent: 1
- - uid: 363
- components:
- - type: Transform
- pos: 4.305803,-12.272566
- parent: 1
-- proto: FireAxeFlaming
- entities:
- - uid: 23
- components:
- - type: Transform
- pos: -1.5018963,-3.4569345
+ pos: -3.7369342,-17.294718
parent: 1
- proto: FoodBoxDonkpocketPizza
entities:
- - uid: 364
+ - uid: 380
components:
- type: Transform
pos: 2.7185502,-19.320925
parent: 1
- proto: FoodBoxDonut
entities:
- - uid: 365
+ - uid: 381
components:
- type: Transform
pos: 5.5401826,-21.187487
parent: 1
- proto: FoodPizzaDonkpocket
entities:
- - uid: 366
+ - uid: 382
components:
- type: Transform
pos: 1.4776825,-21.296862
parent: 1
- proto: FoodSnackSyndi
entities:
- - uid: 367
+ - uid: 383
components:
- type: Transform
pos: 1.5361897,-17.367903
parent: 1
- proto: GasMinerNitrogen
entities:
- - uid: 368
+ - uid: 384
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -2725,7 +2740,7 @@ entities:
parent: 1
- proto: GasMinerOxygen
entities:
- - uid: 369
+ - uid: 385
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -2733,7 +2748,7 @@ entities:
parent: 1
- proto: GasMixer
entities:
- - uid: 370
+ - uid: 386
components:
- type: MetaData
name: O2+N2 mixer
@@ -2748,19 +2763,19 @@ entities:
color: '#0335FCFF'
- proto: GasPassiveVent
entities:
- - uid: 371
+ - uid: 387
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,-26.5
parent: 1
- - uid: 372
+ - uid: 388
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,-26.5
parent: 1
- - uid: 373
+ - uid: 389
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2768,7 +2783,7 @@ entities:
parent: 1
- proto: GasPipeBend
entities:
- - uid: 374
+ - uid: 390
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -2776,19 +2791,19 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 375
+ - uid: 391
components:
- type: Transform
pos: 5.5,-24.5
parent: 1
- - uid: 376
+ - uid: 392
components:
- type: Transform
pos: 3.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 377
+ - uid: 393
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -2796,7 +2811,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 378
+ - uid: 394
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2804,7 +2819,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 379
+ - uid: 395
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -2812,14 +2827,14 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 380
+ - uid: 396
components:
- type: Transform
pos: 0.5,-8.5
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 381
+ - uid: 397
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -2827,7 +2842,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 382
+ - uid: 398
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2835,7 +2850,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 383
+ - uid: 399
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2845,28 +2860,28 @@ entities:
color: '#FF1212FF'
- proto: GasPipeFourway
entities:
- - uid: 384
+ - uid: 400
components:
- type: Transform
pos: 3.5,-23.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 385
+ - uid: 401
components:
- type: Transform
pos: -0.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 386
+ - uid: 402
components:
- type: Transform
pos: -0.5,-16.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 387
+ - uid: 403
components:
- type: Transform
pos: 0.5,-17.5
@@ -2875,39 +2890,39 @@ entities:
color: '#FF1212FF'
- proto: GasPipeStraight
entities:
- - uid: 388
+ - uid: 404
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,-25.5
parent: 1
- - uid: 389
+ - uid: 405
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,-25.5
parent: 1
- - uid: 390
+ - uid: 406
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 4.5,-24.5
parent: 1
- - uid: 391
+ - uid: 407
components:
- type: Transform
pos: 3.5,-22.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 392
+ - uid: 408
components:
- type: Transform
pos: 3.5,-21.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 393
+ - uid: 409
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2915,7 +2930,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 394
+ - uid: 410
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2923,7 +2938,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 395
+ - uid: 411
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2931,7 +2946,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 396
+ - uid: 412
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2939,7 +2954,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 397
+ - uid: 413
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2947,7 +2962,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 398
+ - uid: 414
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -2955,98 +2970,98 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 399
+ - uid: 415
components:
- type: Transform
pos: -0.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 400
+ - uid: 416
components:
- type: Transform
pos: -0.5,-18.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 401
+ - uid: 417
components:
- type: Transform
pos: -0.5,-17.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 402
+ - uid: 418
components:
- type: Transform
pos: -0.5,-15.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 403
+ - uid: 419
components:
- type: Transform
pos: -0.5,-14.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 404
+ - uid: 420
components:
- type: Transform
pos: -0.5,-13.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 405
+ - uid: 421
components:
- type: Transform
pos: -0.5,-12.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 406
+ - uid: 422
components:
- type: Transform
pos: -0.5,-10.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 407
+ - uid: 423
components:
- type: Transform
pos: -0.5,-9.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 408
+ - uid: 424
components:
- type: Transform
pos: -0.5,-8.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 409
+ - uid: 425
components:
- type: Transform
pos: -0.5,-7.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 410
+ - uid: 426
components:
- type: Transform
pos: -0.5,-6.5
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 411
+ - uid: 427
components:
- type: Transform
pos: 0.5,-18.5
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 412
+ - uid: 428
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3054,7 +3069,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 413
+ - uid: 429
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3062,7 +3077,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 414
+ - uid: 430
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3070,7 +3085,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 415
+ - uid: 431
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3078,7 +3093,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 416
+ - uid: 432
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3086,7 +3101,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 417
+ - uid: 433
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3094,13 +3109,13 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 418
+ - uid: 434
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 5.5,-19.5
parent: 1
- - uid: 419
+ - uid: 435
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3108,7 +3123,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 420
+ - uid: 436
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3116,7 +3131,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 421
+ - uid: 437
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3124,7 +3139,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 422
+ - uid: 438
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3132,7 +3147,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 423
+ - uid: 439
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3140,7 +3155,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 424
+ - uid: 440
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3148,7 +3163,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 425
+ - uid: 441
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3156,7 +3171,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 426
+ - uid: 442
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3164,7 +3179,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 427
+ - uid: 443
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3172,7 +3187,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 428
+ - uid: 444
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3180,7 +3195,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 429
+ - uid: 445
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3188,7 +3203,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 430
+ - uid: 446
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3196,7 +3211,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 431
+ - uid: 447
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3204,28 +3219,28 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 432
+ - uid: 448
components:
- type: Transform
pos: 0.5,-11.5
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 433
+ - uid: 449
components:
- type: Transform
pos: 0.5,-10.5
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 434
+ - uid: 450
components:
- type: Transform
pos: 0.5,-9.5
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 435
+ - uid: 451
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3233,7 +3248,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 436
+ - uid: 452
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3241,14 +3256,14 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 437
+ - uid: 453
components:
- type: Transform
pos: 0.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 438
+ - uid: 454
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3256,7 +3271,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 439
+ - uid: 455
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3264,7 +3279,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 440
+ - uid: 456
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3272,7 +3287,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 441
+ - uid: 457
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3280,7 +3295,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 442
+ - uid: 458
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3290,7 +3305,7 @@ entities:
color: '#0335FCFF'
- proto: GasPipeTJunction
entities:
- - uid: 443
+ - uid: 459
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3298,14 +3313,14 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 444
+ - uid: 460
components:
- type: Transform
pos: 2.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 445
+ - uid: 461
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3313,7 +3328,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 446
+ - uid: 462
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3323,7 +3338,7 @@ entities:
color: '#FF1212FF'
- proto: GasPort
entities:
- - uid: 447
+ - uid: 463
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3333,7 +3348,7 @@ entities:
color: '#0335FCFF'
- proto: GasPressurePump
entities:
- - uid: 448
+ - uid: 464
components:
- type: MetaData
name: waste pump
@@ -3345,7 +3360,7 @@ entities:
color: '#FF1212FF'
- proto: GasVentPump
entities:
- - uid: 449
+ - uid: 465
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3353,7 +3368,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 450
+ - uid: 466
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3361,7 +3376,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 451
+ - uid: 467
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3369,7 +3384,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 452
+ - uid: 468
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3377,7 +3392,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 453
+ - uid: 469
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3385,7 +3400,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 454
+ - uid: 470
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3393,7 +3408,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 455
+ - uid: 471
components:
- type: Transform
pos: 0.5,-3.5
@@ -3402,7 +3417,7 @@ entities:
color: '#0335FCFF'
- proto: GasVentScrubber
entities:
- - uid: 456
+ - uid: 472
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3410,7 +3425,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 457
+ - uid: 473
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3418,7 +3433,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 458
+ - uid: 474
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3426,7 +3441,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 459
+ - uid: 475
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3434,7 +3449,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 460
+ - uid: 476
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3442,7 +3457,7 @@ entities:
parent: 1
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 461
+ - uid: 477
components:
- type: Transform
pos: -0.5,-3.5
@@ -3451,149 +3466,192 @@ entities:
color: '#FF1212FF'
- proto: GeneratorBasic15kW
entities:
- - uid: 462
+ - uid: 478
components:
- type: Transform
pos: -4.5,-26.5
parent: 1
- - uid: 463
+ - type: CMExplosionEffect
+ - uid: 479
components:
- type: Transform
pos: -4.5,-25.5
parent: 1
- - uid: 464
+ - type: CMExplosionEffect
+ - uid: 480
components:
- type: Transform
pos: -4.5,-24.5
parent: 1
- - uid: 465
+ - type: CMExplosionEffect
+ - uid: 481
components:
- type: Transform
pos: -6.5,-24.5
parent: 1
- - uid: 466
+ - type: CMExplosionEffect
+ - uid: 482
components:
- type: Transform
pos: -6.5,-25.5
parent: 1
- - uid: 467
+ - type: CMExplosionEffect
+ - uid: 483
components:
- type: Transform
pos: -6.5,-26.5
parent: 1
+ - type: CMExplosionEffect
- proto: GeneratorWallmountAPU
entities:
- - uid: 468
+ - uid: 484
components:
- type: Transform
pos: -6.5,-20.5
parent: 1
+ - type: CMExplosionEffect
- proto: GravityGeneratorMini
entities:
- - uid: 469
+ - uid: 485
components:
- type: Transform
- pos: -5.5,-22.5
+ pos: -5.5,-27.5
parent: 1
- proto: Grille
entities:
- - uid: 470
+ - uid: 486
components:
- type: Transform
pos: 2.5,-12.5
parent: 1
- - uid: 471
+ - uid: 487
components:
- type: Transform
pos: -3.5,-12.5
parent: 1
- - uid: 472
+ - uid: 488
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,-7.5
parent: 1
- - uid: 484
+ - uid: 489
components:
- type: Transform
pos: -2.5,-21.5
parent: 1
- - uid: 485
+ - uid: 490
components:
- type: Transform
pos: -2.5,-19.5
parent: 1
- - uid: 486
+ - uid: 491
components:
- type: Transform
pos: 2.5,-22.5
parent: 1
- - uid: 487
+ - uid: 492
components:
- type: Transform
pos: 4.5,-22.5
parent: 1
- - uid: 488
+ - uid: 493
components:
- type: Transform
pos: -1.5,-18.5
parent: 1
- - uid: 489
+ - uid: 494
components:
- type: Transform
pos: 0.5,-7.5
parent: 1
- - uid: 490
+ - uid: 495
components:
- type: Transform
pos: 3.5,-25.5
parent: 1
- - uid: 491
+ - uid: 496
components:
- type: Transform
pos: 5.5,-25.5
parent: 1
- - uid: 493
+ - uid: 497
components:
- type: Transform
pos: 0.5,-18.5
parent: 1
+ - uid: 858
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 859
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
- proto: Gyroscope
entities:
- - uid: 494
+ - uid: 498
components:
- type: Transform
pos: -5.5,-13.5
parent: 1
- - uid: 495
+ - uid: 499
components:
- type: Transform
pos: 4.5,-13.5
parent: 1
- proto: HospitalCurtainsOpen
entities:
- - uid: 496
+ - uid: 500
components:
- type: Transform
pos: 3.5,-3.5
parent: 1
- proto: KnifePlastic
entities:
- - uid: 498
+ - uid: 501
components:
- type: Transform
pos: 5.3509636,-21.445768
parent: 1
- proto: Lamp
entities:
- - uid: 499
+ - uid: 502
components:
- type: Transform
- pos: -1.483297,-2.2444057
+ pos: -1.7518963,-2.5421104
parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 503
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 503
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
- proto: LockerSyndicatePersonal
entities:
- - uid: 33
+ - uid: 47
components:
- type: Transform
pos: 4.5,-5.5
@@ -3622,186 +3680,225 @@ entities:
showEnts: False
occludes: True
ents:
- - 37
- - 39
- - 36
- - 40
- - 41
- - 38
- - 35
- - 34
+ - 53
+ - 54
+ - 48
+ - 49
+ - 52
+ - 56
+ - 55
+ - 50
+ - 51
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- proto: MedicalBed
entities:
- - uid: 500
+ - uid: 504
components:
- type: Transform
pos: -4.5,-3.5
parent: 1
- proto: MedkitCombatFilled
entities:
- - uid: 501
+ - uid: 505
components:
- type: Transform
pos: -3.401462,-3.5350046
parent: 1
- - uid: 502
+ - uid: 506
components:
- type: Transform
pos: -3.557712,-3.4256296
parent: 1
- proto: Mirror
entities:
- - uid: 503
+ - uid: 507
components:
- type: Transform
pos: 4.5,-3.5
parent: 1
- proto: Multitool
entities:
- - uid: 504
+ - uid: 24
components:
- type: Transform
- pos: -3.383473,-22.548275
- parent: 1
+ parent: 20
+ - type: Physics
+ canCollide: False
- proto: NitrogenTankFilled
entities:
- - uid: 505
+ - uid: 508
components:
- type: Transform
pos: 4.633928,-12.616316
parent: 1
- - uid: 506
+ - type: CMExplosionEffect
+ - uid: 509
components:
- type: Transform
pos: -5.397322,-12.569441
parent: 1
- - uid: 507
+ - type: CMExplosionEffect
+ - uid: 510
components:
- type: Transform
pos: -6.3522453,-17.549818
parent: 1
- - uid: 508
+ - type: CMExplosionEffect
+ - uid: 511
components:
- type: Transform
pos: 5.6633797,-17.565443
parent: 1
+ - type: CMExplosionEffect
- proto: NuclearBombUnanchored
entities:
- - uid: 509
+ - uid: 512
components:
- type: Transform
pos: -2.5,-12.5
parent: 1
- proto: Ointment
entities:
- - uid: 511
+ - uid: 513
components:
- type: Transform
pos: -3.651462,-4.5193796
parent: 1
- - uid: 512
+ - uid: 514
components:
- type: Transform
pos: -3.667087,-4.2225046
parent: 1
- proto: OperatingTable
entities:
- - uid: 513
+ - uid: 515
components:
- type: Transform
pos: -5.5,-4.5
parent: 1
- proto: OxygenCanister
entities:
- - uid: 514
+ - uid: 516
components:
- type: Transform
- pos: -1.5,-24.5
+ pos: 4.5,-23.5
parent: 1
- proto: OxygenTankFilled
entities:
- - uid: 515
+ - uid: 517
components:
- type: Transform
pos: -5.600447,-12.569441
parent: 1
- - uid: 516
+ - type: CMExplosionEffect
+ - uid: 518
components:
- type: Transform
pos: 4.399553,-12.522566
parent: 1
- - uid: 517
+ - type: CMExplosionEffect
+ - uid: 519
components:
- type: Transform
pos: 5.5227547,-17.440443
parent: 1
- - uid: 518
+ - type: CMExplosionEffect
+ - uid: 520
components:
- type: Transform
pos: -6.4928703,-17.440443
parent: 1
+ - type: CMExplosionEffect
- proto: PinpointerNuclear
entities:
- - uid: 519
+ - uid: 521
components:
- type: Transform
pos: -2.4942985,-13.37949
parent: 1
+- proto: PinpointerUniversal
+ entities:
+ - uid: 862
+ components:
+ - type: Transform
+ pos: -1.4940838,-3.081173
+ parent: 1
- proto: PlasmaReinforcedWindowDirectional
entities:
- - uid: 520
+ - uid: 522
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -2.5,-4.5
parent: 1
- - uid: 521
+ - uid: 523
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -2.5,-6.5
parent: 1
- - uid: 522
+ - uid: 524
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -2.5,-3.5
parent: 1
+- proto: PlastitaniumWindowIndestructible
+ entities:
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 669
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 671
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
- proto: PlushieNuke
entities:
- - uid: 523
+ - uid: 525
components:
- type: Transform
pos: -2.4227936,-2.3320491
parent: 1
- proto: PosterContrabandC20r
entities:
- - uid: 524
+ - uid: 526
components:
- type: Transform
pos: 1.5,-14.5
parent: 1
- proto: PosterContrabandCC64KAd
entities:
- - uid: 525
+ - uid: 527
components:
- type: Transform
pos: -5.5,-18.5
parent: 1
- proto: PosterContrabandCybersun600
entities:
- - uid: 526
+ - uid: 528
components:
- type: Transform
pos: 2.5,-6.5
parent: 1
- proto: PosterContrabandDonk
entities:
- - uid: 527
+ - uid: 529
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3809,7 +3906,7 @@ entities:
parent: 1
- proto: PosterContrabandDonutCorp
entities:
- - uid: 528
+ - uid: 530
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3817,14 +3914,14 @@ entities:
parent: 1
- proto: PosterContrabandEnergySwords
entities:
- - uid: 529
+ - uid: 531
components:
- type: Transform
pos: 2.5,-18.5
parent: 1
- proto: PosterContrabandEnlistGorlex
entities:
- - uid: 530
+ - uid: 532
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3832,14 +3929,14 @@ entities:
parent: 1
- proto: PosterContrabandFreeSyndicateEncryptionKey
entities:
- - uid: 531
+ - uid: 533
components:
- type: Transform
pos: -2.5,-8.5
parent: 1
- proto: PosterContrabandInterdyne
entities:
- - uid: 532
+ - uid: 534
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3847,53 +3944,60 @@ entities:
parent: 1
- proto: PosterContrabandKosmicheskayaStantsiya
entities:
- - uid: 533
+ - uid: 535
components:
- type: Transform
pos: -2.5,-22.5
parent: 1
- proto: PosterContrabandMoth
entities:
- - uid: 534
+ - uid: 536
components:
- type: Transform
pos: -2.5,-14.5
parent: 1
- - uid: 535
+ - uid: 537
components:
- type: Transform
pos: 2.5,-3.5
parent: 1
- proto: PosterContrabandNuclearDeviceInformational
entities:
- - uid: 536
+ - uid: 538
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -3.5,-13.5
parent: 1
- - uid: 537
+ - uid: 539
components:
- type: Transform
pos: 0.5,-14.5
parent: 1
- proto: PosterContrabandSyndicatePistol
entities:
- - uid: 538
+ - uid: 540
components:
- type: Transform
pos: 1.5,-10.5
parent: 1
- proto: PosterContrabandSyndicateRecruitment
entities:
- - uid: 539
+ - uid: 541
components:
- type: Transform
pos: -1.5,-14.5
parent: 1
+- proto: PosterContrabandSyndiMechs
+ entities:
+ - uid: 867
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 1
- proto: PosterContrabandWaffleCorp
entities:
- - uid: 540
+ - uid: 542
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3901,15 +4005,14 @@ entities:
parent: 1
- proto: PowerCageRecharger
entities:
- - uid: 607
+ - uid: 543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-23.5
+ pos: -1.5,-19.5
parent: 1
- proto: Poweredlight
entities:
- - uid: 541
+ - uid: 544
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3917,7 +4020,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 542
+ - uid: 545
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -3925,7 +4028,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 543
+ - uid: 546
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3933,7 +4036,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 544
+ - uid: 547
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -3941,14 +4044,14 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 545
+ - uid: 548
components:
- type: Transform
pos: -4.5,-19.5
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 546
+ - uid: 549
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3956,7 +4059,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 547
+ - uid: 550
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3964,7 +4067,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 548
+ - uid: 551
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3972,21 +4075,21 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 549
+ - uid: 552
components:
- type: Transform
pos: 2.5,-15.5
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 550
+ - uid: 553
components:
- type: Transform
pos: -3.5,-15.5
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 551
+ - uid: 554
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3994,7 +4097,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 552
+ - uid: 555
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -4002,7 +4105,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 553
+ - uid: 556
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -4012,7 +4115,7 @@ entities:
powerLoad: 0
- proto: PoweredSmallLight
entities:
- - uid: 554
+ - uid: 557
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -4020,7 +4123,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 555
+ - uid: 558
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -4028,7 +4131,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 556
+ - uid: 559
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -4036,7 +4139,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 557
+ - uid: 560
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -4044,7 +4147,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 558
+ - uid: 561
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -4052,7 +4155,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 559
+ - uid: 562
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -4060,31 +4163,31 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 560
+ - uid: 563
components:
- type: Transform
pos: -6.5,-15.5
parent: 1
- - uid: 561
+ - uid: 564
components:
- type: Transform
pos: 5.5,-15.5
parent: 1
- - uid: 562
+ - uid: 565
components:
- type: Transform
pos: 2.5,-19.5
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 563
+ - uid: 566
components:
- type: Transform
pos: -1.5,-26.5
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 564
+ - uid: 567
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -4092,7 +4195,7 @@ entities:
parent: 1
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 565
+ - uid: 568
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -4102,134 +4205,206 @@ entities:
powerLoad: 0
- proto: Rack
entities:
- - uid: 566
+ - uid: 569
components:
- type: Transform
pos: -3.5,-22.5
parent: 1
- - uid: 567
+ - uid: 570
components:
- type: Transform
pos: 5.5,-23.5
parent: 1
- - uid: 568
+ - uid: 571
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 4.5,-12.5
parent: 1
- - uid: 569
+ - uid: 572
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,-12.5
parent: 1
- - uid: 570
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 1
- - uid: 571
+ - uid: 573
components:
- type: Transform
pos: -6.5,-17.5
parent: 1
- - uid: 572
+ - uid: 574
components:
- type: Transform
pos: 5.5,-17.5
parent: 1
+- proto: Railing
+ entities:
+ - uid: 330
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 1
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 1
+ - uid: 864
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 1
+ - uid: 865
+ components:
+ - type: Transform
+ pos: -1.5,-27.5
+ parent: 1
+ - uid: 866
+ components:
+ - type: Transform
+ pos: -0.5,-27.5
+ parent: 1
- proto: ReinforcedPlasmaWindow
entities:
- - uid: 581
+ - uid: 575
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -2.5,-19.5
parent: 1
- - uid: 582
+ - uid: 576
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,-25.5
parent: 1
- - uid: 583
+ - uid: 577
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,-25.5
parent: 1
- - uid: 584
+ - uid: 578
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 0.5,-7.5
parent: 1
- - uid: 585
+ - uid: 579
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-7.5
parent: 1
- - uid: 588
+ - uid: 580
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -3.5,-12.5
parent: 1
- - uid: 589
+ - uid: 581
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 4.5,-22.5
parent: 1
- - uid: 590
+ - uid: 582
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,-22.5
parent: 1
- - uid: 591
+ - uid: 583
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 0.5,-18.5
parent: 1
- - uid: 592
+ - uid: 584
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-18.5
parent: 1
- - uid: 593
+ - uid: 585
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -2.5,-21.5
parent: 1
- - uid: 594
+ - uid: 586
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,-12.5
parent: 1
+- proto: Screwdriver
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
- proto: ShuttersNormalOpen
entities:
- - uid: 846
+ - uid: 587
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-12.5
parent: 1
- - uid: 847
+ - uid: 588
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,-12.5
parent: 1
+ - uid: 853
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 854
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+- proto: SignalButton
+ entities:
+ - uid: 666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 853:
+ - - Pressed
+ - Toggle
+ 854:
+ - - Pressed
+ - Toggle
+ 855:
+ - - Pressed
+ - Toggle
+ 856:
+ - - Pressed
+ - Toggle
- proto: SignalButtonDirectional
entities:
- - uid: 840
+ - uid: 589
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -4237,9 +4412,10 @@ entities:
parent: 1
- type: DeviceLinkSource
linkedPorts:
- 839:
- - Pressed: Toggle
- - uid: 841
+ 44:
+ - - Pressed
+ - Toggle
+ - uid: 590
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -4247,9 +4423,10 @@ entities:
parent: 1
- type: DeviceLinkSource
linkedPorts:
- 838:
- - Pressed: Toggle
- - uid: 848
+ 43:
+ - - Pressed
+ - Toggle
+ - uid: 591
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -4257,24 +4434,26 @@ entities:
parent: 1
- type: DeviceLinkSource
linkedPorts:
- 846:
- - Pressed: Toggle
- 847:
- - Pressed: Toggle
+ 587:
+ - - Pressed
+ - Toggle
+ 588:
+ - - Pressed
+ - Toggle
- proto: SignDirectionalEvac
entities:
- - uid: 613
+ - uid: 592
components:
- type: Transform
pos: 0.5,-22.5
parent: 1
- - uid: 615
+ - uid: 593
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,-14.5
parent: 1
- - uid: 616
+ - uid: 594
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -4282,242 +4461,261 @@ entities:
parent: 1
- proto: SignElectricalMed
entities:
- - uid: 618
+ - uid: 595
components:
- type: Transform
pos: -2.5,-18.5
parent: 1
- proto: SignNosmoking
entities:
- - uid: 619
+ - uid: 596
components:
- type: Transform
pos: 5.5,-22.5
parent: 1
- proto: SignSecureSmallRed
entities:
- - uid: 620
+ - uid: 597
components:
- type: Transform
pos: -3.5,-11.5
parent: 1
- - uid: 621
+ - uid: 598
components:
- type: Transform
pos: 4.5,-17.5
parent: 1
- - uid: 622
+ - uid: 599
components:
- type: Transform
pos: 2.5,-11.5
parent: 1
- proto: SMESBasic
entities:
- - uid: 623
+ - uid: 600
components:
- type: Transform
pos: -5.5,-19.5
parent: 1
- - uid: 624
+ - uid: 601
components:
- type: Transform
pos: -4.5,-19.5
parent: 1
- proto: SoapSyndie
entities:
- - uid: 625
+ - uid: 602
components:
- type: Transform
- pos: 2.4424396,-17.430403
+ pos: -2.5388212,-17.260199
parent: 1
- proto: SodaDispenser
entities:
- - uid: 626
+ - uid: 603
components:
- type: Transform
pos: 1.5,-19.5
parent: 1
+- proto: StationAnchorOff
+ entities:
+ - uid: 604
+ components:
+ - type: Transform
+ pos: -5.5,-22.5
+ parent: 1
- proto: StorageCanister
entities:
- - uid: 627
+ - uid: 605
components:
- type: Transform
pos: 2.5,-23.5
parent: 1
- proto: SubstationBasic
entities:
- - uid: 628
+ - uid: 606
components:
- type: Transform
pos: -3.5,-19.5
parent: 1
+ - type: CMExplosionEffect
- proto: SuitStorageEVASyndicate
entities:
- - uid: 629
+ - uid: 607
components:
- type: Transform
pos: 0.5,-24.5
parent: 1
- - uid: 630
+ - uid: 608
components:
- type: Transform
pos: 0.5,-23.5
parent: 1
- - uid: 631
+ - uid: 609
components:
- type: Transform
- pos: 3.5,-17.5
+ pos: -1.5,-23.5
parent: 1
- - uid: 632
+ - uid: 610
components:
- type: Transform
- pos: -4.5,-17.5
+ pos: -1.5,-24.5
parent: 1
- proto: SyndicateMicrowave
entities:
- - uid: 497
+ - uid: 611
components:
- type: Transform
pos: 3.5,-19.5
parent: 1
+ - type: CMExplosionEffect
+- proto: SyndicateShuttleConsoleCircuitboard
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
- proto: SyndieMiniBomb
entities:
- - uid: 633
+ - uid: 612
components:
- type: Transform
pos: 1.4127003,-11.973867
parent: 1
- - uid: 634
+ - type: CMExplosionEffect
+ - uid: 613
components:
- type: Transform
pos: 1.6939503,-11.973867
parent: 1
+ - type: CMExplosionEffect
- proto: SyringeInaprovaline
entities:
- - uid: 635
+ - uid: 614
components:
- type: Transform
pos: -3.510837,-4.3787546
parent: 1
- - uid: 636
+ - uid: 615
components:
- type: Transform
pos: -3.510837,-4.0193796
parent: 1
- proto: Table
entities:
- - uid: 637
+ - uid: 616
components:
- type: Transform
pos: 5.5,-21.5
parent: 1
- - uid: 638
+ - uid: 617
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 1.5,-21.5
parent: 1
- - uid: 639
+ - uid: 618
components:
- type: Transform
pos: 3.5,-19.5
parent: 1
- - uid: 640
+ - uid: 619
components:
- type: Transform
pos: 2.5,-19.5
parent: 1
- - uid: 641
+ - uid: 620
components:
- type: Transform
pos: 1.5,-19.5
parent: 1
- proto: TablePlasmaGlass
entities:
- - uid: 642
+ - uid: 621
components:
- type: Transform
pos: -3.5,-4.5
parent: 1
- - uid: 643
+ - uid: 622
components:
- type: Transform
pos: -3.5,-6.5
parent: 1
- - uid: 644
+ - uid: 623
components:
- type: Transform
pos: -3.5,-3.5
parent: 1
- proto: TableReinforced
entities:
- - uid: 645
+ - uid: 624
components:
- type: Transform
pos: -2.5,-11.5
parent: 1
- - uid: 646
+ - uid: 625
components:
- type: Transform
pos: -2.5,-13.5
parent: 1
- - uid: 647
+ - uid: 626
components:
- type: Transform
pos: -1.5,-3.5
parent: 1
- - uid: 648
+ - uid: 627
components:
- type: Transform
pos: -2.5,-2.5
parent: 1
- - uid: 649
+ - uid: 628
components:
- type: Transform
pos: 0.5,-13.5
parent: 1
- - uid: 650
+ - uid: 629
components:
- type: Transform
pos: 1.5,-13.5
parent: 1
- - uid: 651
+ - uid: 630
components:
- type: Transform
pos: 1.5,-12.5
parent: 1
- - uid: 652
+ - uid: 631
components:
- type: Transform
pos: 1.5,-11.5
parent: 1
- - uid: 653
+ - uid: 632
components:
- type: Transform
pos: 2.5,-17.5
parent: 1
- - uid: 654
+ - uid: 633
components:
- type: Transform
pos: 1.5,-17.5
parent: 1
- - uid: 655
+ - uid: 634
components:
- type: Transform
pos: -2.5,-17.5
parent: 1
- - uid: 656
+ - uid: 635
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,-2.5
parent: 1
- - uid: 657
+ - uid: 636
components:
- type: Transform
pos: -3.5,-17.5
parent: 1
- - uid: 658
+ - uid: 637
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -4525,1044 +4723,1110 @@ entities:
parent: 1
- proto: Thruster
entities:
- - uid: 659
+ - uid: 638
components:
- type: Transform
pos: -4.5,-30.5
parent: 1
- - uid: 660
+ - uid: 639
components:
- type: Transform
pos: -5.5,-30.5
parent: 1
- - uid: 661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-7.5
- parent: 1
- - uid: 662
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-7.5
- parent: 1
- - uid: 664
+ - uid: 640
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 6.5,-13.5
parent: 1
- - uid: 665
+ - uid: 641
components:
- type: Transform
pos: 3.5,-30.5
parent: 1
- - uid: 666
+ - uid: 642
components:
- type: Transform
pos: 4.5,-30.5
parent: 1
- - uid: 770
+ - uid: 643
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 4.5,-29.5
parent: 1
- - uid: 771
+ - uid: 644
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,-29.5
parent: 1
- - uid: 784
+ - uid: 645
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,-29.5
parent: 1
- - uid: 810
+ - uid: 646
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,-29.5
parent: 1
- - uid: 849
+ - uid: 647
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -7.5,-13.5
parent: 1
-- proto: ToolboxSyndicate
- entities:
- - uid: 669
+ - uid: 648
components:
- type: Transform
- pos: -2.5731854,-17.414778
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-8.5
parent: 1
+ - uid: 649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-8.5
+ parent: 1
+- proto: ToolboxSyndicate
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -3.4769926,-22.402288
+ parent: 1
+ - type: Storage
+ storedItems:
+ 24:
+ position: 0,0
+ _rotation: South
+ 27:
+ position: 1,0
+ _rotation: South
+ 23:
+ position: 2,0
+ _rotation: South
+ 26:
+ position: 0,2
+ _rotation: East
+ 22:
+ position: 0,3
+ _rotation: East
+ 21:
+ position: 2,3
+ _rotation: East
+ 25:
+ position: 5,2
+ _rotation: East
+ 28:
+ position: 5,3
+ _rotation: East
+ 29:
+ position: 7,2
+ _rotation: South
+ - type: UserInterface
+ actors:
+ enum.StorageUiKey.Key:
+ - invalid
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 24
+ - 27
+ - 23
+ - 26
+ - 22
+ - 21
+ - 25
+ - 28
+ - 29
+ - type: ActiveUserInterface
- proto: ToolboxSyndicateFilled
entities:
- - uid: 670
+ - uid: 650
components:
- type: Transform
pos: 1.5034143,-11.298322
parent: 1
+- proto: ToyFigurineNukieElite
+ entities:
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 2.3518038,-17.393011
+ parent: 1
+- proto: ToyMauler
+ entities:
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 2.6955538,-17.275824
+ parent: 1
- proto: VendingMachineTankDispenserEVA
entities:
- - uid: 671
+ - uid: 653
components:
- type: Transform
pos: 5.5,-15.5
parent: 1
- - uid: 672
+ - uid: 654
components:
- type: MetaData
name: tank dispenser
- type: Transform
pos: 2.5,-24.5
parent: 1
- - uid: 673
+ - uid: 655
components:
- type: Transform
pos: -6.5,-15.5
parent: 1
- proto: VendingMachineYouTool
entities:
- - uid: 674
+ - uid: 656
components:
- type: Transform
pos: -3.5,-24.5
parent: 1
- proto: WallPlastitanium
entities:
- - uid: 11
+ - uid: 657
components:
- type: Transform
pos: -1.5,-25.5
parent: 1
- - uid: 309
+ - uid: 658
components:
- type: Transform
pos: -2.5,-9.5
parent: 1
- - uid: 310
+ - uid: 659
components:
- type: Transform
pos: 5.5,-4.5
parent: 1
- - uid: 476
+ - uid: 660
components:
- type: Transform
pos: 1.5,-9.5
parent: 1
- - uid: 478
+ - uid: 661
components:
- type: Transform
pos: -6.5,-4.5
parent: 1
- - uid: 481
+ - uid: 662
components:
- type: Transform
pos: -4.5,-2.5
parent: 1
- - uid: 482
+ - uid: 663
components:
- type: Transform
pos: 5.5,-19.5
parent: 1
- - uid: 492
+ - uid: 664
components:
- type: Transform
pos: -5.5,-31.5
parent: 1
- - uid: 575
+ - uid: 665
components:
- type: Transform
pos: 3.5,-31.5
parent: 1
- - uid: 600
- components:
- - type: Transform
- pos: -2.5,-1.5
- parent: 1
- - uid: 601
- components:
- - type: Transform
- pos: -0.5,-1.5
- parent: 1
- - uid: 602
+ - uid: 668
components:
- type: Transform
pos: 4.5,-31.5
parent: 1
- - uid: 603
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 1
- - uid: 604
- components:
- - type: Transform
- pos: -1.5,-1.5
- parent: 1
- - uid: 605
- components:
- - type: Transform
- pos: 1.5,-1.5
- parent: 1
- - uid: 608
+ - uid: 672
components:
- type: Transform
pos: 3.5,-2.5
parent: 1
- - uid: 675
+ - uid: 673
components:
- type: Transform
pos: 2.5,-2.5
parent: 1
- - uid: 676
+ - uid: 674
components:
- type: Transform
pos: 4.5,-3.5
parent: 1
- - uid: 677
+ - uid: 675
components:
- type: Transform
pos: -3.5,-11.5
parent: 1
- - uid: 678
+ - uid: 676
components:
- type: Transform
pos: 2.5,-14.5
parent: 1
- - uid: 679
+ - uid: 677
components:
- type: Transform
pos: 4.5,-14.5
parent: 1
- - uid: 680
+ - uid: 678
components:
- type: Transform
pos: -2.5,-14.5
parent: 1
- - uid: 681
+ - uid: 679
components:
- type: Transform
pos: 2.5,-18.5
parent: 1
- - uid: 682
+ - uid: 680
components:
- type: Transform
pos: 1.5,-25.5
parent: 1
- - uid: 683
+ - uid: 681
components:
- type: Transform
pos: 1.5,-18.5
parent: 1
- - uid: 684
+ - uid: 682
components:
- type: Transform
pos: 7.5,-17.5
parent: 1
- - uid: 685
+ - uid: 683
components:
- type: Transform
pos: -3.5,-26.5
parent: 1
- - uid: 686
+ - uid: 684
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 3.5,-7.5
parent: 1
- - uid: 687
+ - uid: 685
components:
- type: Transform
pos: 2.5,-13.5
parent: 1
- - uid: 688
+ - uid: 686
components:
- type: Transform
pos: -3.5,-28.5
parent: 1
- - uid: 689
+ - uid: 687
components:
- type: Transform
pos: 2.5,-10.5
parent: 1
- - uid: 690
+ - uid: 688
components:
- type: Transform
pos: 4.5,-18.5
parent: 1
- - uid: 691
+ - uid: 689
components:
- type: Transform
pos: -2.5,-10.5
parent: 1
- - uid: 692
+ - uid: 690
components:
- type: Transform
pos: -3.5,-10.5
parent: 1
- - uid: 693
+ - uid: 691
components:
- type: Transform
pos: -6.5,-11.5
parent: 1
- - uid: 694
+ - uid: 692
components:
- type: Transform
pos: 4.5,-10.5
parent: 1
- - uid: 696
+ - uid: 693
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -4.5,-7.5
parent: 1
- - uid: 698
+ - uid: 694
components:
- type: Transform
pos: -5.5,-6.5
parent: 1
- - uid: 699
+ - uid: 695
components:
- type: Transform
pos: 4.5,-6.5
parent: 1
- - uid: 700
+ - uid: 696
components:
- type: Transform
pos: -6.5,-5.5
parent: 1
- - uid: 701
+ - uid: 697
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,-8.5
parent: 1
- - uid: 702
+ - uid: 698
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 1.5,-7.5
parent: 1
- - uid: 703
+ - uid: 699
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 1.5,-8.5
parent: 1
- - uid: 704
+ - uid: 700
components:
- type: Transform
pos: 2.5,-11.5
parent: 1
- - uid: 705
+ - uid: 701
components:
- type: Transform
pos: 5.5,-18.5
parent: 1
- - uid: 706
+ - uid: 702
components:
- type: Transform
pos: -8.5,-15.5
parent: 1
- - uid: 707
+ - uid: 703
components:
- type: Transform
pos: -8.5,-17.5
parent: 1
- - uid: 708
+ - uid: 704
components:
- type: Transform
pos: -7.5,-17.5
parent: 1
- - uid: 709
+ - uid: 705
components:
- type: Transform
pos: -5.5,-10.5
parent: 1
- - uid: 710
+ - uid: 706
components:
- type: Transform
pos: -3.5,-13.5
parent: 1
- - uid: 711
+ - uid: 707
components:
- type: Transform
pos: 3.5,-18.5
parent: 1
- - uid: 712
+ - uid: 708
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -4.5,-6.5
parent: 1
- - uid: 713
+ - uid: 709
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-7.5
parent: 1
- - uid: 714
+ - uid: 710
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-8.5
parent: 1
- - uid: 715
+ - uid: 711
components:
- type: Transform
pos: 5.5,-14.5
parent: 1
- - uid: 716
+ - uid: 712
components:
- type: Transform
pos: 7.5,-15.5
parent: 1
- - uid: 717
+ - uid: 713
components:
- type: Transform
pos: -6.5,-19.5
parent: 1
- - uid: 718
+ - uid: 714
components:
- type: Transform
pos: -6.5,-18.5
parent: 1
- - uid: 719
+ - uid: 715
components:
- type: Transform
pos: -3.5,-25.5
parent: 1
- - uid: 720
+ - uid: 716
components:
- type: Transform
pos: 2.5,-25.5
parent: 1
- - uid: 721
+ - uid: 717
components:
- type: Transform
pos: 2.5,-27.5
parent: 1
- - uid: 722
+ - uid: 718
components:
- type: Transform
pos: 4.5,-17.5
parent: 1
- - uid: 723
+ - uid: 719
components:
- type: Transform
pos: -7.5,-21.5
parent: 1
- - uid: 724
+ - uid: 720
components:
- type: Transform
pos: -7.5,-27.5
parent: 1
- - uid: 725
+ - uid: 721
components:
- type: Transform
pos: -7.5,-24.5
parent: 1
- - uid: 726
+ - uid: 722
components:
- type: Transform
pos: 6.5,-21.5
parent: 1
- - uid: 727
+ - uid: 723
components:
- type: Transform
pos: 6.5,-24.5
parent: 1
- - uid: 728
+ - uid: 724
components:
- type: Transform
pos: 6.5,-26.5
parent: 1
- - uid: 729
+ - uid: 725
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,-3.5
parent: 1
- - uid: 730
+ - uid: 726
components:
- type: Transform
pos: 1.5,-10.5
parent: 1
- - uid: 731
+ - uid: 727
components:
- type: Transform
pos: -3.5,-27.5
parent: 1
- - uid: 732
+ - uid: 728
components:
- type: Transform
pos: -6.5,-12.5
parent: 1
- - uid: 733
+ - uid: 729
components:
- type: Transform
pos: 5.5,-12.5
parent: 1
- - uid: 734
+ - uid: 730
components:
- type: Transform
pos: 5.5,-11.5
parent: 1
- - uid: 735
+ - uid: 731
components:
- type: Transform
pos: -5.5,-11.5
parent: 1
- - uid: 736
+ - uid: 732
components:
- type: Transform
pos: -6.5,-20.5
parent: 1
- - uid: 737
+ - uid: 733
components:
- type: Transform
pos: 0.5,-14.5
parent: 1
- - uid: 738
+ - uid: 734
components:
- type: Transform
pos: -1.5,-14.5
parent: 1
- - uid: 739
+ - uid: 735
components:
- type: Transform
pos: 5.5,-20.5
parent: 1
- - uid: 740
+ - uid: 736
components:
- type: Transform
pos: -5.5,-14.5
parent: 1
- - uid: 741
+ - uid: 737
components:
- type: Transform
pos: 6.5,-17.5
parent: 1
- - uid: 742
+ - uid: 738
components:
- type: Transform
pos: -3.5,-14.5
parent: 1
- - uid: 743
+ - uid: 739
components:
- type: Transform
pos: -2.5,-18.5
parent: 1
- - uid: 744
+ - uid: 740
components:
- type: Transform
pos: 2.5,-26.5
parent: 1
- - uid: 745
+ - uid: 741
components:
- type: Transform
pos: 2.5,-28.5
parent: 1
- - uid: 746
+ - uid: 742
components:
- type: Transform
pos: 6.5,-25.5
parent: 1
- - uid: 747
+ - uid: 743
components:
- type: Transform
pos: 6.5,-22.5
parent: 1
- - uid: 748
+ - uid: 744
components:
- type: Transform
pos: -7.5,-23.5
parent: 1
- - uid: 749
+ - uid: 745
components:
- type: Transform
pos: -7.5,-26.5
parent: 1
- - uid: 750
+ - uid: 746
components:
- type: Transform
pos: -7.5,-22.5
parent: 1
- - uid: 751
+ - uid: 747
components:
- type: Transform
pos: -7.5,-20.5
parent: 1
- - uid: 752
+ - uid: 748
components:
- type: Transform
pos: 4.5,-15.5
parent: 1
- - uid: 754
+ - uid: 749
components:
- type: Transform
pos: 6.5,-27.5
parent: 1
- - uid: 755
+ - uid: 750
components:
- type: Transform
pos: 6.5,-23.5
parent: 1
- - uid: 756
+ - uid: 751
components:
- type: Transform
pos: 6.5,-20.5
parent: 1
- - uid: 757
+ - uid: 752
components:
- type: Transform
pos: -7.5,-25.5
parent: 1
- - uid: 759
+ - uid: 753
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,-15.5
parent: 1
- - uid: 760
+ - uid: 754
components:
- type: Transform
pos: -5.5,-18.5
parent: 1
- - uid: 761
+ - uid: 755
components:
- type: Transform
pos: -5.5,-3.5
parent: 1
- - uid: 762
+ - uid: 756
components:
- type: Transform
pos: 5.5,-5.5
parent: 1
- - uid: 763
+ - uid: 757
components:
- type: Transform
pos: -3.5,-2.5
parent: 1
- - uid: 765
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-7.5
- parent: 1
- - uid: 766
- components:
- - type: Transform
- pos: -3.5,-18.5
- parent: 1
- - uid: 769
- components:
- - type: Transform
- pos: -6.5,-14.5
- parent: 1
- - uid: 772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-7.5
- parent: 1
- - uid: 773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-8.5
- parent: 1
- - uid: 774
- components:
- - type: Transform
- pos: 4.5,-11.5
- parent: 1
- - uid: 775
- components:
- - type: Transform
- pos: -6.5,-13.5
- parent: 1
- - uid: 776
- components:
- - type: Transform
- pos: -3.5,-30.5
- parent: 1
- - uid: 777
- components:
- - type: Transform
- pos: 6.5,-15.5
- parent: 1
- - uid: 778
- components:
- - type: Transform
- pos: 5.5,-13.5
- parent: 1
- - uid: 779
- components:
- - type: Transform
- pos: -7.5,-15.5
- parent: 1
- - uid: 780
- components:
- - type: Transform
- pos: 1.5,-14.5
- parent: 1
- - uid: 781
- components:
- - type: Transform
- pos: -4.5,-18.5
- parent: 1
- - uid: 782
- components:
- - type: Transform
- pos: -2.5,-25.5
- parent: 1
- - uid: 783
- components:
- - type: Transform
- pos: 0.5,-25.5
- parent: 1
- - uid: 785
- components:
- - type: Transform
- pos: -1.5,-22.5
- parent: 1
- - uid: 786
- components:
- - type: Transform
- pos: 0.5,-22.5
- parent: 1
- - uid: 787
- components:
- - type: Transform
- pos: 1.5,-24.5
- parent: 1
- - uid: 788
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 1
- - uid: 789
- components:
- - type: Transform
- pos: 1.5,-22.5
- parent: 1
- - uid: 790
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 1
- - uid: 791
- components:
- - type: Transform
- pos: -2.5,-23.5
- parent: 1
- - uid: 792
- components:
- - type: Transform
- pos: -2.5,-22.5
- parent: 1
- - uid: 793
- components:
- - type: Transform
- pos: 5.5,-22.5
- parent: 1
- - uid: 794
- components:
- - type: Transform
- pos: -7.5,-14.5
- parent: 1
- - uid: 795
- components:
- - type: Transform
- pos: -7.5,-18.5
- parent: 1
- - uid: 796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-28.5
- parent: 1
- - uid: 797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-28.5
- parent: 1
- - uid: 798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-28.5
- parent: 1
- - uid: 799
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-28.5
- parent: 1
- - uid: 800
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-28.5
- parent: 1
- - uid: 801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-28.5
- parent: 1
- - uid: 802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-6.5
- parent: 1
- - uid: 803
- components:
- - type: Transform
- pos: 4.5,-27.5
- parent: 1
- - uid: 804
- components:
- - type: Transform
- pos: 4.5,-26.5
- parent: 1
- - uid: 805
- components:
- - type: Transform
- pos: 4.5,-25.5
- parent: 1
- - uid: 806
- components:
- - type: Transform
- pos: 2.5,-4.5
- parent: 1
- - uid: 807
- components:
- - type: Transform
- pos: 3.5,-6.5
- parent: 1
- - uid: 808
- components:
- - type: Transform
- pos: 2.5,-30.5
- parent: 1
- - uid: 809
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-17.5
- parent: 1
- - uid: 812
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-17.5
- parent: 1
- - uid: 813
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-15.5
- parent: 1
- - uid: 814
- components:
- - type: Transform
- pos: 5.5,-29.5
- parent: 1
- - uid: 815
- components:
- - type: Transform
- pos: -3.5,-29.5
- parent: 1
- - uid: 816
- components:
- - type: Transform
- pos: 2.5,-29.5
- parent: 1
- - uid: 817
- components:
- - type: Transform
- pos: 6.5,-14.5
- parent: 1
- - uid: 818
- components:
- - type: Transform
- pos: 6.5,-18.5
- parent: 1
- - uid: 819
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-17.5
- parent: 1
- - uid: 820
- components:
- - type: Transform
- pos: -6.5,-29.5
- parent: 1
- - uid: 821
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-30.5
- parent: 1
- - uid: 822
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-30.5
- parent: 1
- - uid: 823
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-15.5
- parent: 1
- - uid: 825
- components:
- - type: Transform
- pos: -4.5,-31.5
- parent: 1
-- proto: WallPlastitaniumDiagonal
- entities:
- - uid: 573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-31.5
- parent: 1
- - uid: 578
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-31.5
- parent: 1
- - uid: 579
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-31.5
- parent: 1
- - uid: 580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-31.5
- parent: 1
- - uid: 667
- components:
- - type: Transform
- pos: -5.5,-2.5
- parent: 1
- - uid: 668
- components:
- - type: Transform
- pos: -3.5,-1.5
- parent: 1
- - uid: 695
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-28.5
- parent: 1
- - uid: 697
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-28.5
- parent: 1
- - uid: 753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-3.5
- parent: 1
- uid: 758
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,-6.5
+ pos: -2.5,-7.5
+ parent: 1
+ - uid: 759
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 1
+ - uid: 760
+ components:
+ - type: Transform
+ pos: -6.5,-14.5
+ parent: 1
+ - uid: 761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-7.5
+ parent: 1
+ - uid: 762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 1
+ - uid: 763
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
parent: 1
- uid: 764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-6.5
+ pos: -6.5,-13.5
+ parent: 1
+ - uid: 765
+ components:
+ - type: Transform
+ pos: -3.5,-30.5
+ parent: 1
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
parent: 1
- uid: 767
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-2.5
+ pos: 5.5,-13.5
parent: 1
- uid: 768
+ components:
+ - type: Transform
+ pos: -7.5,-15.5
+ parent: 1
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 1
+ - uid: 770
+ components:
+ - type: Transform
+ pos: -4.5,-18.5
+ parent: 1
+ - uid: 771
+ components:
+ - type: Transform
+ pos: -2.5,-25.5
+ parent: 1
+ - uid: 772
+ components:
+ - type: Transform
+ pos: 0.5,-25.5
+ parent: 1
+ - uid: 773
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 1
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 0.5,-22.5
+ parent: 1
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 1.5,-24.5
+ parent: 1
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
+ parent: 1
+ - uid: 777
+ components:
+ - type: Transform
+ pos: 1.5,-22.5
+ parent: 1
+ - uid: 778
+ components:
+ - type: Transform
+ pos: -2.5,-24.5
+ parent: 1
+ - uid: 779
+ components:
+ - type: Transform
+ pos: -2.5,-23.5
+ parent: 1
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 1
+ - uid: 781
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 1
+ - uid: 782
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 1
+ - uid: 783
+ components:
+ - type: Transform
+ pos: -7.5,-18.5
+ parent: 1
+ - uid: 784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-28.5
+ parent: 1
+ - uid: 785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-28.5
+ parent: 1
+ - uid: 786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-28.5
+ parent: 1
+ - uid: 787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-28.5
+ parent: 1
+ - uid: 788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-28.5
+ parent: 1
+ - uid: 789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-28.5
+ parent: 1
+ - uid: 790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-6.5
+ parent: 1
+ - uid: 791
+ components:
+ - type: Transform
+ pos: 4.5,-27.5
+ parent: 1
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 4.5,-26.5
+ parent: 1
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 4.5,-25.5
+ parent: 1
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 1
+ - uid: 795
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 2.5,-30.5
+ parent: 1
+ - uid: 797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-17.5
+ parent: 1
+ - uid: 798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-17.5
+ parent: 1
+ - uid: 799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-15.5
+ parent: 1
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 5.5,-29.5
+ parent: 1
+ - uid: 801
+ components:
+ - type: Transform
+ pos: -3.5,-29.5
+ parent: 1
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 2.5,-29.5
+ parent: 1
+ - uid: 803
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 1
+ - uid: 804
+ components:
+ - type: Transform
+ pos: 6.5,-18.5
+ parent: 1
+ - uid: 805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,-17.5
+ parent: 1
+ - uid: 806
+ components:
+ - type: Transform
+ pos: -6.5,-29.5
+ parent: 1
+ - uid: 807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-30.5
+ parent: 1
+ - uid: 808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-30.5
+ parent: 1
+ - uid: 809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,-15.5
+ parent: 1
+ - uid: 810
+ components:
+ - type: Transform
+ pos: -4.5,-31.5
+ parent: 1
+ - uid: 811
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,-1.5
parent: 1
- - uid: 811
+ - uid: 812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 852
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+- proto: WallPlastitaniumDiagonal
+ entities:
+ - uid: 813
+ components:
+ - type: Transform
+ pos: -4.5,-27.5
+ parent: 1
+ - uid: 814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-31.5
+ parent: 1
+ - uid: 815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-31.5
+ parent: 1
+ - uid: 816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-31.5
+ parent: 1
+ - uid: 817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-31.5
+ parent: 1
+ - uid: 818
+ components:
+ - type: Transform
+ pos: -5.5,-2.5
+ parent: 1
+ - uid: 819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-28.5
+ parent: 1
+ - uid: 820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-28.5
+ parent: 1
+ - uid: 821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-3.5
+ parent: 1
+ - uid: 822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-6.5
+ parent: 1
+ - uid: 823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-6.5
+ parent: 1
+ - uid: 824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 1
+ - uid: 825
components:
- type: Transform
pos: -6.5,-3.5
parent: 1
- - uid: 844
+ - uid: 826
components:
- type: Transform
pos: -6.5,-10.5
parent: 1
- - uid: 845
+ - uid: 827
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 5.5,-10.5
parent: 1
+ - uid: 828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-27.5
+ parent: 1
+ - uid: 829
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 1
+ - uid: 830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-1.5
+ parent: 1
- proto: WarningN2
entities:
- - uid: 827
+ - uid: 831
components:
- type: Transform
pos: 4.5,-25.5
parent: 1
- proto: WarningO2
entities:
- - uid: 828
+ - uid: 832
components:
- type: Transform
pos: 2.5,-25.5
parent: 1
- proto: WarningWaste
entities:
- - uid: 829
+ - uid: 833
components:
- type: Transform
pos: 4.5,-18.5
parent: 1
- proto: WaterCooler
entities:
- - uid: 586
+ - uid: 834
components:
- type: Transform
pos: 4.5,-19.5
parent: 1
- proto: WeaponCapacitorRecharger
entities:
- - uid: 598
+ - uid: 835
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,-13.5
parent: 1
- - uid: 826
+ - uid: 836
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -5570,96 +5834,113 @@ entities:
parent: 1
- proto: WeaponTurretSyndicate
entities:
- - uid: 24
+ - uid: 837
components:
- type: Transform
pos: -2.5,-6.5
parent: 1
- - uid: 610
- components:
- - type: Transform
- pos: -1.5,-19.5
- parent: 1
- - uid: 824
+ - uid: 838
components:
- type: Transform
pos: -0.5,-16.5
parent: 1
- - uid: 842
+ - uid: 839
components:
- type: Transform
pos: -1.5,-13.5
parent: 1
-- proto: WeaponTurretSyndicateDisposable
- entities:
- - uid: 474
+ - uid: 840
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-19.5
parent: 1
- - uid: 479
- components:
- - type: Transform
- pos: 3.5,-8.5
- parent: 1
- - uid: 480
+ - uid: 841
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-2.5
parent: 1
- - uid: 574
+ - uid: 842
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-19.5
parent: 1
- - uid: 587
+ - uid: 843
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,-2.5
parent: 1
- - uid: 595
+ - uid: 844
components:
- type: Transform
pos: 1.5,-26.5
parent: 1
- - uid: 597
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 1
- - uid: 609
+ - uid: 845
components:
- type: Transform
pos: -2.5,-26.5
parent: 1
-- proto: WeldingFuelTankHighCapacity
- entities:
- - uid: 606
+ - uid: 846
components:
- type: Transform
- pos: -4.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-7.5
parent: 1
+ - uid: 847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-7.5
+ parent: 1
+- proto: WelderIndustrial
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+- proto: WeldingFuelTankHighCapacity
+ entities:
+ - uid: 848
+ components:
+ - type: Transform
+ pos: -3.5,-23.5
+ parent: 1
+ - type: CMExplosionEffect
- proto: WindoorSecure
entities:
- - uid: 831
+ - uid: 849
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -2.5,-5.5
parent: 1
-- proto: Wrench
+- proto: Wirecutter
entities:
- - uid: 832
+ - uid: 28
components:
- type: Transform
- pos: 5.4749,-23.512577
- parent: 1
- - uid: 833
+ parent: 20
+ - type: Physics
+ canCollide: False
+- proto: Wrench
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ parent: 20
+ - type: Physics
+ canCollide: False
+ - uid: 850
components:
- type: Transform
pos: 5.63115,-23.481327
parent: 1
- - uid: 834
+ - uid: 851
components:
- type: Transform
pos: 1.3165435,-13.287029
diff --git a/Resources/Maps/_Sunrise/Station/barratry.yml b/Resources/Maps/_Sunrise/Station/barratry.yml
index dd34a1682f..d315bcac01 100644
--- a/Resources/Maps/_Sunrise/Station/barratry.yml
+++ b/Resources/Maps/_Sunrise/Station/barratry.yml
@@ -1,11 +1,11 @@
meta:
format: 7
category: Map
- engineVersion: 252.0.0
- forkId: sunrise_station_public
- forkVersion: 8a92da2e178d70cf28f5e780ea205d677458605e
- time: 04/14/2025 21:04:34
- entityCount: 16693
+ engineVersion: 255.1.0
+ forkId: sunrise_station
+ forkVersion: 13eb0ce4bafb5713294bc5611a69fc2af4c51871
+ time: 05/07/2025 15:23:30
+ entityCount: 16755
maps:
- 1
grids:
@@ -114,7 +114,7 @@ entities:
version: 6
-2,0:
ind: -2,0
- tiles: WQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWwAAAAACWwAAAAADWwAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWgAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAABAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWwAAAAACWwAAAAADWwAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWgAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAQAAAAAAAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,-1:
ind: 1,-1
@@ -11988,11 +11988,13 @@ entities:
0: 17
-21,4:
1: 15
- 0: 60928
+ 0: 52736
+ 3: 8192
-20,5:
0: 7631
-21,5:
- 0: 65038
+ 0: 65036
+ 3: 2
-20,6:
0: 7163
-21,6:
@@ -17773,109 +17775,22 @@ entities:
- type: Transform
pos: 10.680454,33.64544
parent: 2
-- proto: DoubleBed
+- proto: Bed
entities:
- - uid: 885
- components:
- - type: Transform
- pos: 18.5,-8.5
- parent: 2
- - uid: 886
- components:
- - type: Transform
- pos: 18.5,-7.5
- parent: 2
- - uid: 887
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 2
- - uid: 888
- components:
- - type: Transform
- pos: 6.5,-1.5
- parent: 2
- - uid: 889
- components:
- - type: Transform
- pos: 21.5,-0.5
- parent: 2
- - uid: 890
- components:
- - type: Transform
- pos: -53.5,49.5
- parent: 2
- - uid: 891
- components:
- - type: Transform
- pos: -50.5,49.5
- parent: 2
- - uid: 892
- components:
- - type: Transform
- pos: -56.5,49.5
- parent: 2
- - uid: 893
- components:
- - type: Transform
- pos: 17.5,23.5
- parent: 2
- - uid: 894
- components:
- - type: Transform
- pos: 6.5,11.5
- parent: 2
- - uid: 895
+ - uid: 896
components:
- type: Transform
pos: 8.5,11.5
parent: 2
- - uid: 896
+ - uid: 5853
components:
- type: Transform
pos: 10.5,11.5
parent: 2
- - uid: 897
+ - uid: 11060
components:
- type: Transform
- pos: 11.5,31.5
- parent: 2
- - uid: 898
- components:
- - type: Transform
- pos: 7.5,31.5
- parent: 2
- - uid: 899
- components:
- - type: Transform
- pos: 9.5,31.5
- parent: 2
- - uid: 900
- components:
- - type: Transform
- pos: -54.5,84.5
- parent: 2
- - uid: 901
- components:
- - type: Transform
- pos: -54.5,90.5
- parent: 2
- - uid: 902
- components:
- - type: Transform
- pos: -5.5,58.5
- parent: 2
- - uid: 903
- components:
- - type: Transform
- pos: 17.5,48.5
- parent: 2
-- proto: BedsheetCaptain
- entities:
- - uid: 904
- components:
- - type: Transform
- pos: -5.5,58.5
+ pos: 6.5,11.5
parent: 2
- proto: BedsheetClown
entities:
@@ -17893,16 +17808,6 @@ entities:
parent: 2
- proto: BedsheetGreen
entities:
- - uid: 907
- components:
- - type: Transform
- pos: 18.5,-7.5
- parent: 2
- - uid: 908
- components:
- - type: Transform
- pos: 18.5,-8.5
- parent: 2
- uid: 909
components:
- type: Transform
@@ -17953,56 +17858,6 @@ entities:
rot: 3.141592653589793 rad
pos: -63.5,58.5
parent: 2
-- proto: BedsheetOrange
- entities:
- - uid: 917
- components:
- - type: Transform
- pos: -56.5,49.5
- parent: 2
- - uid: 918
- components:
- - type: Transform
- pos: -53.5,49.5
- parent: 2
- - uid: 919
- components:
- - type: Transform
- pos: -50.5,49.5
- parent: 2
-- proto: BedsheetPurple
- entities:
- - uid: 920
- components:
- - type: Transform
- pos: 17.5,48.5
- parent: 2
-- proto: BedsheetSpawner
- entities:
- - uid: 921
- components:
- - type: Transform
- pos: 6.5,-1.5
- parent: 2
- - uid: 922
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 2
-- proto: BedsheetSyndie
- entities:
- - uid: 923
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,90.5
- parent: 2
- - uid: 924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,84.5
- parent: 2
- proto: Bible
entities:
- uid: 925
@@ -18767,9 +18622,12 @@ entities:
- type: DeviceLinkSource
linkedPorts:
16540:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
+ - - Start
+ - Close
+ - - Timer
+ - AutoClose
+ - - Timer
+ - Open
- uid: 1061
components:
- type: Transform
@@ -18778,9 +18636,12 @@ entities:
- type: DeviceLinkSource
linkedPorts:
16541:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
+ - - Start
+ - Close
+ - - Timer
+ - AutoClose
+ - - Timer
+ - Open
- uid: 1062
components:
- type: Transform
@@ -18789,9 +18650,12 @@ entities:
- type: DeviceLinkSource
linkedPorts:
16542:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
+ - - Start
+ - Close
+ - - Timer
+ - AutoClose
+ - - Timer
+ - Open
- uid: 1063
components:
- type: Transform
@@ -37648,6 +37512,33 @@ entities:
- type: Transform
pos: -35.5,-12.5
parent: 2
+- proto: CargoTelepad
+ entities:
+ - uid: 6113
+ components:
+ - type: Transform
+ pos: -45.5,62.5
+ parent: 2
+ - uid: 16745
+ components:
+ - type: Transform
+ pos: -13.5,-4.5
+ parent: 2
+ - uid: 16750
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 2
+ - uid: 16753
+ components:
+ - type: Transform
+ pos: -75.5,26.5
+ parent: 2
+ - uid: 16755
+ components:
+ - type: Transform
+ pos: -44.5,37.5
+ parent: 2
- proto: Carpet
entities:
- uid: 4823
@@ -39091,11 +38982,6 @@ entities:
- type: Transform
pos: -19.5,17.5
parent: 2
- - uid: 5095
- components:
- - type: Transform
- pos: -19.5,15.5
- parent: 2
- uid: 5096
components:
- type: Transform
@@ -41325,11 +41211,6 @@ entities:
parent: 2
- proto: Chair
entities:
- - uid: 5512
- components:
- - type: Transform
- pos: -51.5,49.5
- parent: 2
- uid: 5513
components:
- type: Transform
@@ -42304,11 +42185,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -16.5,-4.5
parent: 2
- - uid: 5681
- components:
- - type: Transform
- pos: -54.5,49.5
- parent: 2
- uid: 5682
components:
- type: Transform
@@ -42589,11 +42465,6 @@ entities:
parent: 2
- proto: ChairWood
entities:
- - uid: 5730
- components:
- - type: Transform
- pos: -57.5,49.5
- parent: 2
- uid: 5731
components:
- type: Transform
@@ -43296,29 +43167,6 @@ entities:
- 0
- 0
- 0
- - uid: 5788
- components:
- - type: Transform
- pos: -20.5,10.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 5789
components:
- type: Transform
@@ -43960,29 +43808,6 @@ entities:
- 0
- 0
- 0
- - uid: 5819
- components:
- - type: Transform
- pos: -20.5,9.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 5820
components:
- type: Transform
@@ -44746,29 +44571,6 @@ entities:
- 0
- 0
- 0
- - uid: 5853
- components:
- - type: Transform
- pos: -20.5,11.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 5854
components:
- type: Transform
@@ -45729,13 +45531,6 @@ entities:
- type: Transform
pos: -43.167446,63.38897
parent: 2
-- proto: ClothingOuterHardsuitEVA
- entities:
- - uid: 5954
- components:
- - type: Transform
- pos: -6.5221434,-13.381658
- parent: 2
- proto: ClothingOuterEVASuitSyndicate
entities:
- uid: 5955
@@ -45743,6 +45538,45 @@ entities:
- type: Transform
pos: -57.469036,92.47581
parent: 2
+- proto: ClothingOuterHardsuitBlueShield
+ entities:
+ - uid: 16704
+ components:
+ - type: Transform
+ parent: 16703
+ - type: Physics
+ canCollide: False
+ - uid: 16705
+ components:
+ - type: Transform
+ parent: 16703
+ - type: Physics
+ canCollide: False
+ - uid: 16706
+ components:
+ - type: Transform
+ parent: 16703
+ - type: Physics
+ canCollide: False
+ - uid: 16707
+ components:
+ - type: Transform
+ parent: 16703
+ - type: Physics
+ canCollide: False
+ - uid: 16708
+ components:
+ - type: Transform
+ parent: 16703
+ - type: Physics
+ canCollide: False
+- proto: ClothingOuterHardsuitEVA
+ entities:
+ - uid: 5954
+ components:
+ - type: Transform
+ pos: -6.5221434,-13.381658
+ parent: 2
- proto: ClothingOuterRobesCult
entities:
- uid: 5956
@@ -45869,6 +45703,38 @@ entities:
rot: 1.5707963267948966 rad
pos: -47.44944,9.445694
parent: 2
+- proto: ClothingThighWhite
+ entities:
+ - uid: 16712
+ components:
+ - type: Transform
+ pos: -50.647194,51.413612
+ parent: 2
+ - uid: 16713
+ components:
+ - type: Transform
+ pos: -50.522194,51.554237
+ parent: 2
+ - uid: 16714
+ components:
+ - type: Transform
+ pos: -53.522194,51.366737
+ parent: 2
+ - uid: 16715
+ components:
+ - type: Transform
+ pos: -53.490944,51.460487
+ parent: 2
+ - uid: 16716
+ components:
+ - type: Transform
+ pos: -56.56907,51.460487
+ parent: 2
+ - uid: 16717
+ components:
+ - type: Transform
+ pos: -56.459694,51.679237
+ parent: 2
- proto: ClothingUniformJumpskirtClown
entities:
- uid: 5975
@@ -45892,6 +45758,38 @@ entities:
- type: Transform
pos: -72.56229,45.579994
parent: 2
+- proto: ClothingUniformJumpskirtPrisoner
+ entities:
+ - uid: 11053
+ components:
+ - type: Transform
+ pos: -53.365944,51.632362
+ parent: 2
+ - uid: 16395
+ components:
+ - type: Transform
+ pos: -50.63157,51.491737
+ parent: 2
+ - uid: 16701
+ components:
+ - type: Transform
+ pos: -53.50657,51.366737
+ parent: 2
+ - uid: 16702
+ components:
+ - type: Transform
+ pos: -56.615944,51.366737
+ parent: 2
+ - uid: 16709
+ components:
+ - type: Transform
+ pos: -50.428444,51.647987
+ parent: 2
+ - uid: 16711
+ components:
+ - type: Transform
+ pos: -56.56907,51.554237
+ parent: 2
- proto: ClothingUniformJumpsuitAncient
entities:
- uid: 5979
@@ -45983,6 +45881,38 @@ entities:
- type: Transform
pos: -46.572647,10.501696
parent: 2
+- proto: ClothingUniformJumpsuitPrisoner
+ entities:
+ - uid: 890
+ components:
+ - type: Transform
+ pos: -53.56907,51.491737
+ parent: 2
+ - uid: 917
+ components:
+ - type: Transform
+ pos: -50.522194,51.522987
+ parent: 2
+ - uid: 918
+ components:
+ - type: Transform
+ pos: -53.44407,51.429237
+ parent: 2
+ - uid: 5512
+ components:
+ - type: Transform
+ pos: -50.60032,51.569862
+ parent: 2
+ - uid: 16035
+ components:
+ - type: Transform
+ pos: -56.615944,51.569862
+ parent: 2
+ - uid: 16040
+ components:
+ - type: Transform
+ pos: -56.44407,51.476112
+ parent: 2
- proto: ComfyChair
entities:
- uid: 5987
@@ -46056,7 +45986,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
11050:
- - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+ - - ArtifactAnalyzerSender
+ - ArtifactAnalyzerReceiver
- proto: ComputerBroken
entities:
- uid: 5997
@@ -46131,6 +46062,16 @@ entities:
rot: 3.141592653589793 rad
pos: -71.5,15.5
parent: 2
+ - uid: 16752
+ components:
+ - type: Transform
+ pos: -76.5,26.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16753:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerCargoOrdersMedical
entities:
- uid: 1031
@@ -46139,6 +46080,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 16.5,29.5
parent: 2
+ - uid: 16751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,22.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16750:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerCargoOrdersScience
entities:
- uid: 11289
@@ -46147,8 +46099,30 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,0.5
parent: 2
+ - uid: 16744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-5.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16745:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerCargoOrdersSecurity
entities:
+ - uid: 6024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,61.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6113:
+ - - OrderSender
+ - OrderReceiver
- uid: 12492
components:
- type: Transform
@@ -46163,6 +46137,17 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,37.5
parent: 2
+ - uid: 16754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,39.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16755:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerComms
entities:
- uid: 6005
@@ -46176,14 +46161,6 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,59.5
parent: 2
-- proto: ComputerContrabandSale
- entities:
- - uid: 10764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,62.5
- parent: 2
- proto: ComputerCrewMonitoring
entities:
- uid: 6007
@@ -46322,14 +46299,6 @@ entities:
rot: 3.141592653589793 rad
pos: -34.5,-3.5
parent: 2
-- proto: ComputerSecuritySaleConsole
- entities:
- - uid: 6024
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,61.5
- parent: 2
- proto: ComputerSolarControl
entities:
- uid: 6025
@@ -46729,8 +46698,8 @@ entities:
immutable: False
temperature: 293.14963
moles:
- - 3.3523011
- - 12.611038
+ - 2.0141742
+ - 7.577132
- 0
- 0
- 0
@@ -46759,8 +46728,8 @@ entities:
immutable: False
temperature: 293.14963
moles:
- - 3.3523011
- - 12.611038
+ - 2.0141742
+ - 7.577132
- 0
- 0
- 0
@@ -47125,18 +47094,17 @@ entities:
parent: 2
- proto: CrystalBlue
entities:
+ - uid: 5819
+ components:
+ - type: Transform
+ pos: -18.5,12.5
+ parent: 2
- uid: 6112
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -15.5,15.5
parent: 2
- - uid: 6113
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,12.5
- parent: 2
- proto: CrystalGrey
entities:
- uid: 6114
@@ -47527,6 +47495,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -55.5,-8.5
parent: 2
+ - uid: 16699
+ components:
+ - type: Transform
+ pos: 10.5,32.5
+ parent: 2
- proto: DeployableBarrier
entities:
- uid: 6171
@@ -51322,6 +51295,26 @@ entities:
- type: Transform
pos: -51.5,118.5
parent: 2
+ - uid: 16703
+ components:
+ - type: MetaData
+ name: хранилище скафандров ОСЩ
+ - type: Transform
+ pos: -15.5,14.5
+ parent: 2
+ - type: DisposalUnit
+ nextFlush: 0
+ - type: ContainerContainer
+ containers:
+ disposals: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 16704
+ - 16705
+ - 16706
+ - 16707
+ - 16708
- proto: DisposalYJunction
entities:
- uid: 6828
@@ -51354,6 +51347,108 @@ entities:
- type: Transform
pos: -27.5,52.5
parent: 2
+- proto: DoubleBed
+ entities:
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 18.5,-8.5
+ parent: 2
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 18.5,-7.5
+ parent: 2
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 2
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 21.5,-0.5
+ parent: 2
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 17.5,23.5
+ parent: 2
+ - uid: 900
+ components:
+ - type: Transform
+ pos: -54.5,84.5
+ parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -54.5,90.5
+ parent: 2
+ - uid: 902
+ components:
+ - type: Transform
+ pos: -5.5,58.5
+ parent: 2
+ - uid: 903
+ components:
+ - type: Transform
+ pos: 17.5,48.5
+ parent: 2
+- proto: DoubleBedsheetCaptain
+ entities:
+ - uid: 904
+ components:
+ - type: Transform
+ pos: -5.5,58.5
+ parent: 2
+- proto: DoubleBedsheetCosmos
+ entities:
+ - uid: 16736
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 2
+ - uid: 16737
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+- proto: DoubleBedsheetGreen
+ entities:
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 18.5,-8.5
+ parent: 2
+ - uid: 908
+ components:
+ - type: Transform
+ pos: 18.5,-7.5
+ parent: 2
+- proto: DoubleBedsheetPurple
+ entities:
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 17.5,48.5
+ parent: 2
+- proto: DoubleBedsheetSyndie
+ entities:
+ - uid: 923
+ components:
+ - type: Transform
+ pos: -54.5,90.5
+ parent: 2
+ - uid: 924
+ components:
+ - type: Transform
+ pos: -54.5,84.5
+ parent: 2
- proto: DoubleGlassAirlock
entities:
- uid: 6833
@@ -51436,6 +51531,11 @@ entities:
- type: Transform
pos: -44.533802,36.62159
parent: 2
+ - uid: 11061
+ components:
+ - type: Transform
+ pos: -15.783771,14.453202
+ parent: 2
- proto: DrinkBeerGrowler
entities:
- uid: 6845
@@ -53651,11 +53751,6 @@ entities:
- type: Transform
pos: -21.5,20.5
parent: 2
- - uid: 7133
- components:
- - type: Transform
- pos: -19.5,15.5
- parent: 2
- uid: 7134
components:
- type: Transform
@@ -55105,13 +55200,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
-- proto: FloorTileItemSteelMono
- entities:
- - uid: 7399
- components:
- - type: Transform
- pos: -43.761604,64.4281
- parent: 2
- proto: FloorWaterEntity
entities:
- uid: 7400
@@ -74839,31 +74927,16 @@ entities:
- type: Transform
pos: -46.5,56.5
parent: 2
- - uid: 10076
- components:
- - type: Transform
- pos: -57.5,48.5
- parent: 2
- uid: 10077
components:
- type: Transform
pos: -56.5,48.5
parent: 2
- - uid: 10078
- components:
- - type: Transform
- pos: -54.5,48.5
- parent: 2
- uid: 10079
components:
- type: Transform
pos: -53.5,48.5
parent: 2
- - uid: 10080
- components:
- - type: Transform
- pos: -51.5,48.5
- parent: 2
- uid: 10081
components:
- type: Transform
@@ -78567,6 +78640,13 @@ entities:
- type: Transform
pos: -43.5,65.5
parent: 2
+- proto: GunSafeIonRifle
+ entities:
+ - uid: 16729
+ components:
+ - type: Transform
+ pos: -43.5,62.5
+ parent: 2
- proto: GunSafeRifleM16A4
entities:
- uid: 10753
@@ -78628,23 +78708,6 @@ entities:
- type: Transform
pos: 15.5,52.5
parent: 2
-- proto: HeadSkeleton
- entities:
- - uid: 10763
- components:
- - type: MetaData
- name: череп капитана
- - type: Transform
- pos: -14.534092,66.507454
- parent: 2
- - type: MovementSpeedModifier
- baseSprintSpeed: 2.5
- - type: GhostTakeoverAvailable
- - type: MindContainer
- - type: InputMover
- - type: MobMover
- - type: MovementAlwaysTouching
- - type: CanEscapeInventory
- proto: HighSecArmoryLocked
entities:
- uid: 9891
@@ -79854,6 +79917,18 @@ entities:
parent: 2
- proto: LandMineExplosive
entities:
+ - uid: 921
+ components:
+ - type: Transform
+ pos: 7.467936,50.393715
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 922
+ components:
+ - type: Transform
+ pos: 18.478863,26.429777
+ parent: 2
+ - type: CMExplosionEffect
- uid: 10961
components:
- type: Transform
@@ -79932,13 +80007,150 @@ entities:
pos: -43.434734,58.514977
parent: 2
- type: CMExplosionEffect
-- proto: LandMineKick
- entities:
- - uid: 10974
+ - uid: 16710
components:
- type: Transform
- pos: -43.78244,64.44894
+ pos: -5.4259667,47.542137
parent: 2
+ - type: CMExplosionEffect
+ - uid: 16719
+ components:
+ - type: Transform
+ pos: -22.500475,51.48475
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16720
+ components:
+ - type: Transform
+ pos: -44.5177,55.537262
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16721
+ components:
+ - type: Transform
+ pos: -51.483833,43.49714
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16722
+ components:
+ - type: Transform
+ pos: -60.46904,47.507774
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16723
+ components:
+ - type: Transform
+ pos: -69.42473,52.59185
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16724
+ components:
+ - type: Transform
+ pos: -74.34533,37.561417
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16725
+ components:
+ - type: Transform
+ pos: -60.460423,29.570599
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16726
+ components:
+ - type: Transform
+ pos: -66.472824,11.970033
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16727
+ components:
+ - type: Transform
+ pos: -60.569313,8.361031
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16728
+ components:
+ - type: Transform
+ pos: -48.430256,1.6286044
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16730
+ components:
+ - type: Transform
+ pos: -21.542635,-7.24915
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16731
+ components:
+ - type: Transform
+ pos: -15.4852915,1.7599254
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16732
+ components:
+ - type: Transform
+ pos: -23.474567,-1.5595186
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16733
+ components:
+ - type: Transform
+ pos: -5.543088,9.324292
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16734
+ components:
+ - type: Transform
+ pos: -9.56166,25.433048
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16735
+ components:
+ - type: Transform
+ pos: -9.628486,37.512672
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16738
+ components:
+ - type: Transform
+ pos: 14.539884,22.495857
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16739
+ components:
+ - type: Transform
+ pos: 13.563107,12.471433
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16740
+ components:
+ - type: Transform
+ pos: 23.542938,23.575262
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16746
+ components:
+ - type: Transform
+ pos: -19.967329,9.448967
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16747
+ components:
+ - type: Transform
+ pos: -19.417744,29.53273
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16748
+ components:
+ - type: Transform
+ pos: -27.110504,21.461422
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 16749
+ components:
+ - type: Transform
+ pos: -17.364386,20.516977
+ parent: 2
+ - type: CMExplosionEffect
- proto: Lantern
entities:
- uid: 10975
@@ -79980,33 +80192,47 @@ entities:
- type: DeviceLinkSource
linkedPorts:
952:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
963:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
964:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
962:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
961:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
960:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
953:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
955:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
954:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
956:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
957:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
958:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
959:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
965:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: LockableButtonCaptain
entities:
- uid: 10980
@@ -80018,17 +80244,23 @@ entities:
- type: DeviceLinkSource
linkedPorts:
945:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
946:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
947:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
948:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
950:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
951:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 10981
@@ -80053,6 +80285,33 @@ entities:
- type: Transform
pos: -16.5,15.5
parent: 2
+- proto: LockerBlueShieldOfficerFilled
+ entities:
+ - uid: 895
+ components:
+ - type: Transform
+ pos: -18.5,14.5
+ parent: 2
+ - uid: 898
+ components:
+ - type: Transform
+ pos: -15.5,12.5
+ parent: 2
+ - uid: 5788
+ components:
+ - type: Transform
+ pos: -18.5,13.5
+ parent: 2
+ - uid: 10974
+ components:
+ - type: Transform
+ pos: -16.5,12.5
+ parent: 2
+ - uid: 16396
+ components:
+ - type: Transform
+ pos: -17.5,12.5
+ parent: 2
- proto: LockerBoozeFilled
entities:
- uid: 10985
@@ -80579,6 +80838,27 @@ entities:
- type: Transform
pos: -63.5,65.5
parent: 2
+- proto: LockerPrisoner
+ entities:
+ - uid: 12619
+ components:
+ - type: Transform
+ pos: -50.5,51.5
+ parent: 2
+- proto: LockerPrisoner2
+ entities:
+ - uid: 5681
+ components:
+ - type: Transform
+ pos: -53.5,51.5
+ parent: 2
+- proto: LockerPrisoner3
+ entities:
+ - uid: 5730
+ components:
+ - type: Transform
+ pos: -56.5,51.5
+ parent: 2
- proto: LockerQuarterMasterFilled
entities:
- uid: 11015
@@ -80976,11 +81256,6 @@ entities:
parent: 2
- proto: MachineFrame
entities:
- - uid: 11053
- components:
- - type: Transform
- pos: -5.5,0.5
- parent: 2
- uid: 11054
components:
- type: Transform
@@ -81011,17 +81286,12 @@ entities:
- type: Transform
pos: -12.5,-14.5
parent: 2
-- proto: MagazineDeagle
+- proto: MachineMaterialSilo
entities:
- - uid: 11060
+ - uid: 10764
components:
- type: Transform
- pos: -60.802124,64.00896
- parent: 2
- - uid: 11061
- components:
- - type: Transform
- pos: -60.75525,64.00896
+ pos: -5.5,0.5
parent: 2
- proto: MaintenanceFluffSpawner
entities:
@@ -81785,13 +82055,57 @@ entities:
- type: Transform
pos: 19.58975,42.76493
parent: 2
+- proto: Mattress
+ entities:
+ - uid: 891
+ components:
+ - type: Transform
+ pos: -56.5,49.5
+ parent: 2
+ - uid: 892
+ components:
+ - type: Transform
+ pos: -50.5,49.5
+ parent: 2
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -53.5,49.5
+ parent: 2
+ - uid: 7133
+ components:
+ - type: MetaData
+ name: обосанный матрас
+ - type: Transform
+ pos: -17.5,13.5
+ parent: 2
+ - uid: 16397
+ components:
+ - type: Transform
+ pos: -16.5,14.5
+ parent: 2
- proto: MedicalBed
entities:
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 2
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 2
- uid: 11171
components:
- type: Transform
pos: -63.5,59.5
parent: 2
+ - uid: 12621
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 2
- proto: MedkitAdvancedFilled
entities:
- uid: 11172
@@ -82589,6 +82903,13 @@ entities:
- type: Transform
pos: 4.5,53.5
parent: 2
+- proto: PaintVend
+ entities:
+ - uid: 16743
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 2
- proto: PaladinCircuitBoard
entities:
- uid: 11273
@@ -82637,7 +82958,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -82701,7 +83021,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -82758,7 +83077,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -82815,7 +83133,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -82877,7 +83194,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -82944,7 +83260,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -83008,7 +83323,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -83070,7 +83384,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -83132,7 +83445,6 @@ entities:
radius: 0.35
position: 0,0
mask:
- - TableLayer
- HighImpassable
- LowImpassable
- BulletImpassable
@@ -87242,11 +87554,6 @@ entities:
- type: Transform
pos: -20.5,29.5
parent: 2
- - uid: 11906
- components:
- - type: Transform
- pos: -20.5,13.5
- parent: 2
- uid: 11907
components:
- type: Transform
@@ -87384,11 +87691,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -67.5,13.5
parent: 2
- - uid: 11933
- components:
- - type: Transform
- pos: -17.5,14.5
- parent: 2
- uid: 11934
components:
- type: Transform
@@ -90982,21 +91284,11 @@ entities:
- type: Transform
pos: -50.5,48.5
parent: 2
- - uid: 12619
- components:
- - type: Transform
- pos: -51.5,48.5
- parent: 2
- uid: 12620
components:
- type: Transform
pos: -53.5,48.5
parent: 2
- - uid: 12621
- components:
- - type: Transform
- pos: -54.5,48.5
- parent: 2
- uid: 12622
components:
- type: Transform
@@ -91535,11 +91827,6 @@ entities:
- type: Transform
pos: -47.5,52.5
parent: 2
- - uid: 12724
- components:
- - type: Transform
- pos: -57.5,48.5
- parent: 2
- uid: 12725
components:
- type: Transform
@@ -92371,7 +92658,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
926:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12875
components:
- type: Transform
@@ -92380,7 +92668,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
927:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12876
components:
- type: Transform
@@ -92390,9 +92679,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
12862:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
12863:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12877
components:
- type: Transform
@@ -92402,29 +92693,41 @@ entities:
- type: DeviceLinkSource
linkedPorts:
933:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
932:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
931:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
930:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
929:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
928:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
934:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
935:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
936:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
937:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
938:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
939:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12878
components:
- type: Transform
@@ -92434,29 +92737,41 @@ entities:
- type: DeviceLinkSource
linkedPorts:
928:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
929:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
930:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
931:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
932:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
933:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
939:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
938:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
937:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
936:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
935:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
934:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12879
components:
- type: Transform
@@ -92465,11 +92780,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
12870:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
12871:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
12872:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12880
components:
- type: Transform
@@ -92478,7 +92796,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
940:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12881
components:
- type: Transform
@@ -92487,7 +92806,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
941:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12882
components:
- type: Transform
@@ -92497,29 +92817,41 @@ entities:
- type: DeviceLinkSource
linkedPorts:
966:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
968:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
967:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
970:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
971:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
972:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
973:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
974:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
975:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
976:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
977:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
969:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 12883
components:
- type: Transform
@@ -93019,6 +93351,13 @@ entities:
- type: Transform
pos: -14.5,49.5
parent: 2
+- proto: SignGenpop
+ entities:
+ - uid: 11933
+ components:
+ - type: Transform
+ pos: -52.5,52.5
+ parent: 2
- proto: SignLibrary
entities:
- uid: 12963
@@ -94114,13 +94453,40 @@ entities:
- type: Transform
pos: -31.5,39.5
parent: 2
-- proto: SpawnPointBlueShield
+- proto: SpawnPointBlueShieldEnsign
+ entities:
+ - uid: 16694
+ components:
+ - type: Transform
+ pos: -17.5,14.5
+ parent: 2
+- proto: SpawnPointBlueShieldOfficer
entities:
- uid: 13157
components:
- type: Transform
pos: -16.5,13.5
parent: 2
+ - uid: 16695
+ components:
+ - type: Transform
+ pos: -16.5,14.5
+ parent: 2
+ - uid: 16696
+ components:
+ - type: Transform
+ pos: -15.5,14.5
+ parent: 2
+ - uid: 16697
+ components:
+ - type: Transform
+ pos: -15.5,13.5
+ parent: 2
+ - uid: 16698
+ components:
+ - type: Transform
+ pos: -17.5,13.5
+ parent: 2
- proto: SpawnPointBotanist
entities:
- uid: 13158
@@ -94781,11 +95147,21 @@ entities:
- type: InsideEntityStorage
- proto: StasisBed
entities:
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 8.5,28.5
+ parent: 2
- uid: 13266
components:
- type: Transform
pos: -63.5,58.5
parent: 2
+ - uid: 16455
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 2
- proto: StationAiUploadComputer
entities:
- uid: 13267
@@ -95107,13 +95483,6 @@ entities:
pos: -4.5,-38.5
parent: 2
- type: CMExplosionEffect
-- proto: SuitStorageBlueShield
- entities:
- - uid: 13312
- components:
- - type: Transform
- pos: -17.5,12.5
- parent: 2
- proto: SuitStorageCE
entities:
- uid: 13313
@@ -97276,6 +97645,12 @@ entities:
- type: Transform
pos: -23.5,-11.5
parent: 2
+ - uid: 16700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,28.5
+ parent: 2
- proto: TableCarpet
entities:
- uid: 13688
@@ -98666,6 +99041,23 @@ entities:
- type: Transform
pos: -70.39617,45.607796
parent: 2
+- proto: TurnstileGenpopLeave
+ entities:
+ - uid: 10078
+ components:
+ - type: Transform
+ pos: -57.5,48.5
+ parent: 2
+ - uid: 10080
+ components:
+ - type: Transform
+ pos: -51.5,48.5
+ parent: 2
+ - uid: 11906
+ components:
+ - type: Transform
+ pos: -54.5,48.5
+ parent: 2
- proto: TwoWayLever
entities:
- uid: 13909
@@ -98676,17 +99068,26 @@ entities:
- type: DeviceLinkSource
linkedPorts:
12852:
- - Left: Open
- - Right: Open
- - Middle: Close
+ - - Left
+ - Open
+ - - Right
+ - Open
+ - - Middle
+ - Close
12854:
- - Left: Open
- - Right: Open
- - Middle: Close
+ - - Left
+ - Open
+ - - Right
+ - Open
+ - - Middle
+ - Close
12853:
- - Left: Open
- - Right: Open
- - Middle: Close
+ - - Left
+ - Open
+ - - Right
+ - Open
+ - - Middle
+ - Close
- uid: 13910
components:
- type: Transform
@@ -98695,17 +99096,26 @@ entities:
- type: DeviceLinkSource
linkedPorts:
6042:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6041:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6043:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
- uid: 13911
components:
- type: Transform
@@ -98714,17 +99124,26 @@ entities:
- type: DeviceLinkSource
linkedPorts:
6043:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6041:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6042:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
- uid: 13912
components:
- type: Transform
@@ -98733,33 +99152,54 @@ entities:
- type: DeviceLinkSource
linkedPorts:
6044:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6045:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
12484:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6046:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6047:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6048:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
6049:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
- proto: UniformGeisha
entities:
- uid: 13913
@@ -99000,6 +99440,13 @@ entities:
- type: Transform
pos: -40.5,26.5
parent: 2
+- proto: VendingMachineCoffeeMigrateUnderwear
+ entities:
+ - uid: 16741
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 2
- proto: VendingMachineCola
entities:
- uid: 13949
@@ -99049,6 +99496,13 @@ entities:
- type: Transform
pos: -56.5,65.5
parent: 2
+- proto: VendingMachineDonutMigrateKinko
+ entities:
+ - uid: 16742
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 2
- proto: VendingMachineEngiDrobe
entities:
- uid: 13957
@@ -99135,6 +99589,14 @@ entities:
- type: Transform
pos: -50.5,124.5
parent: 2
+ - uid: 16718
+ components:
+ - type: MetaData
+ desc: Для настоящей мужской дружбы.
+ name: Пидормат
+ - type: Transform
+ pos: -50.5,56.5
+ parent: 2
- proto: VendingMachineRestockBooze
entities:
- uid: 13969
@@ -99144,6 +99606,16 @@ entities:
parent: 2
- proto: VendingMachineRestockChemVend
entities:
+ - uid: 10076
+ components:
+ - type: Transform
+ pos: -0.58474314,21.40208
+ parent: 2
+ - uid: 10763
+ components:
+ - type: Transform
+ pos: -0.48745692,22.235415
+ parent: 2
- uid: 13970
components:
- type: Transform
@@ -104745,12 +105217,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -14.5,11.5
parent: 2
- - uid: 15004
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,14.5
- parent: 2
- uid: 15005
components:
- type: Transform
@@ -109098,6 +109564,31 @@ entities:
parent: 2
- proto: WallSolidRust
entities:
+ - uid: 5095
+ components:
+ - type: Transform
+ pos: -19.5,15.5
+ parent: 2
+ - uid: 7399
+ components:
+ - type: Transform
+ pos: -19.5,14.5
+ parent: 2
+ - uid: 12724
+ components:
+ - type: Transform
+ pos: -19.5,13.5
+ parent: 2
+ - uid: 13312
+ components:
+ - type: Transform
+ pos: -19.5,11.5
+ parent: 2
+ - uid: 15004
+ components:
+ - type: Transform
+ pos: -19.5,12.5
+ parent: 2
- uid: 15845
components:
- type: Transform
@@ -110077,11 +110568,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,7.5
parent: 2
- - uid: 16035
- components:
- - type: Transform
- pos: -18.5,12.5
- parent: 2
- uid: 16036
components:
- type: Transform
@@ -110106,11 +110592,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -18.5,15.5
parent: 2
- - uid: 16040
- components:
- - type: Transform
- pos: -18.5,13.5
- parent: 2
- uid: 16041
components:
- type: Transform
@@ -112165,75 +112646,6 @@ entities:
- 0
- proto: WardrobePrisonFilled
entities:
- - uid: 16395
- components:
- - type: Transform
- pos: -50.5,51.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 16396
- components:
- - type: Transform
- pos: -53.5,51.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 16397
- components:
- - type: Transform
- pos: -56.5,51.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14963
- moles:
- - 3.3523011
- - 12.611038
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 16398
components:
- type: Transform
@@ -112730,14 +113142,6 @@ entities:
- type: Transform
pos: 16.491018,-8.470055
parent: 2
-- proto: WeaponPistolDeagle
- entities:
- - uid: 16455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.458374,64.29021
- parent: 2
- proto: WeaponPistolG22
entities:
- uid: 16456
diff --git a/Resources/Maps/_Sunrise/Station/delta.yml b/Resources/Maps/_Sunrise/Station/delta.yml
index 4c16844116..b3abe902fb 100644
--- a/Resources/Maps/_Sunrise/Station/delta.yml
+++ b/Resources/Maps/_Sunrise/Station/delta.yml
@@ -1,11 +1,11 @@
meta:
format: 7
category: Map
- engineVersion: 254.1.0
- forkId: ""
- forkVersion: ""
- time: 04/28/2025 17:55:16
- entityCount: 38531
+ engineVersion: 255.1.0
+ forkId: sunrise_station
+ forkVersion: 13eb0ce4bafb5713294bc5611a69fc2af4c51871
+ time: 05/07/2025 13:04:43
+ entityCount: 38791
maps:
- 1
grids:
@@ -137,15 +137,15 @@ entities:
version: 6
-1,0:
ind: -1,0
- tiles: YAAAAAABgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAfgAAAAADfgAAAAAAfgAAAAABfgAAAAACfgAAAAADfgAAAAACfgAAAAABYAAAAAADgQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAACfgAAAAACfgAAAAABfgAAAAADfgAAAAADfgAAAAABYAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADfQAAAAABfQAAAAABfQAAAAABgQAAAAAAfgAAAAABfgAAAAABfgAAAAACfgAAAAAAfgAAAAAAfgAAAAACfgAAAAABYAAAAAABgQAAAAAAIAAAAAABIAAAAAADIAAAAAACfQAAAAABfQAAAAADfQAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAACfQAAAAABfQAAAAADfQAAAAADgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAACfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACIAAAAAAAgQAAAAAAIAAAAAADYAAAAAADgQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAADYAAAAAABYAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAACIAAAAAADgQAAAAAAIAAAAAADgQAAAAAAIAAAAAABYAAAAAABgQAAAAAAfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAfQAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAIAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAACYAAAAAACYAAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADJQAAAAADgQAAAAAAEwAAAAAAEwAAAAABEwAAAAACEwAAAAABEwAAAAABEwAAAAADEwAAAAABEwAAAAAAIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADJQAAAAAAJQAAAAADEwAAAAADEwAAAAACEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAACEwAAAAAAIAAAAAABIAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAJQAAAAACJQAAAAADEwAAAAABEwAAAAACEwAAAAADEwAAAAABEwAAAAACEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAACEwAAAAACEwAAAAAAEwAAAAAD
+ tiles: YAAAAAABgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAfgAAAAADfgAAAAAAfgAAAAABfgAAAAACfgAAAAADfgAAAAACfgAAAAABYAAAAAADgQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAACfgAAAAACfgAAAAABfgAAAAADfgAAAAADfgAAAAABYAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADfQAAAAABfQAAAAABfQAAAAABgQAAAAAAfgAAAAABfgAAAAABfgAAAAACfgAAAAAAfgAAAAAAfgAAAAACfgAAAAABYAAAAAABgQAAAAAAIAAAAAABIAAAAAADIAAAAAACfQAAAAABfQAAAAADfQAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAACfQAAAAABfQAAAAADfQAAAAADgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAACfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACIAAAAAAAgQAAAAAAIAAAAAADYAAAAAADgQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAADYAAAAAABYAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAACIAAAAAADgQAAAAAAIAAAAAADgQAAAAAAIAAAAAABYAAAAAABgQAAAAAAfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAfQAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAIAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACYAAAAAACYAAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADJQAAAAADgQAAAAAAEwAAAAAAEwAAAAABEwAAAAACEwAAAAABEwAAAAABEwAAAAADEwAAAAABEwAAAAAAIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAADJQAAAAAAJQAAAAADEwAAAAADEwAAAAACEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAACEwAAAAAAIAAAAAABIAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAJQAAAAACJQAAAAADEwAAAAABEwAAAAACEwAAAAADEwAAAAABEwAAAAACEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAACEwAAAAACEwAAAAAAEwAAAAAD
version: 6
0,-1:
ind: 0,-1
- tiles: fgAAAAABfgAAAAACfgAAAAADfgAAAAADfgAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAACYAAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAfgAAAAACfgAAAAADfgAAAAADfgAAAAABfgAAAAADgQAAAAAAcAAAAAAAYAAAAAACYAAAAAABYAAAAAABcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAYAAAAAABYAAAAAADfQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAACYAAAAAABYAAAAAABcAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfgAAAAABfgAAAAADfgAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAYAAAAAADYAAAAAADYAAAAAADcAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfgAAAAABfgAAAAACYAAAAAADYAAAAAADgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAACIAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACJQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABJQAAAAACYAAAAAAAYAAAAAAAIAAAAAABJQAAAAAAYAAAAAABMAAAAAACMAAAAAADMAAAAAADYAAAAAAAMAAAAAABMAAAAAABMAAAAAADMAAAAAABMAAAAAABYAAAAAADJQAAAAADYAAAAAADYAAAAAADIAAAAAACJQAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADJQAAAAACYAAAAAACYAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACYAAAAAAAIAAAAAACgQAAAAAAfgAAAAAAfgAAAAABfgAAAAADfgAAAAADgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAACfgAAAAABfgAAAAABfgAAAAACgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAACgQAAAAAAfgAAAAACfgAAAAACfgAAAAABfgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
+ tiles: fgAAAAABfgAAAAACfgAAAAADfgAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAACfgAAAAADfgAAAAADfgAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAYAAAAAABYAAAAAADfQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAABfgAAAAADfgAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAfgAAAAABfgAAAAACYAAAAAADYAAAAAADgAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAACIAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACJQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABJQAAAAACYAAAAAAAYAAAAAAAIAAAAAABJQAAAAAAYAAAAAABMAAAAAACMAAAAAADMAAAAAADYAAAAAAAMAAAAAABMAAAAAABMAAAAAADMAAAAAABMAAAAAABYAAAAAADJQAAAAADYAAAAAADYAAAAAADIAAAAAACJQAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADJQAAAAACYAAAAAACYAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACYAAAAAAAIAAAAAACgQAAAAAAfgAAAAAAfgAAAAABfgAAAAADfgAAAAADgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAACfgAAAAABfgAAAAABfgAAAAACgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAACgQAAAAAAfgAAAAACfgAAAAACfgAAAAABfgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: fgAAAAAAgQAAAAAAfgAAAAABfgAAAAABfgAAAAACfgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAADfQAAAAABfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfgAAAAACgQAAAAAAfgAAAAABfgAAAAABfgAAAAABfgAAAAADgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAADfQAAAAACfQAAAAACQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfgAAAAABgQAAAAAAfgAAAAACfgAAAAACfgAAAAAAfgAAAAADgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACfQAAAAABfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAADgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAYAAAAAABIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADIAAAAAAAIAAAAAADgQAAAAAAcwAAAAADcwAAAAAAgQAAAAAAYAAAAAACIAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAYAAAAAADIAAAAAACgQAAAAAAIAAAAAADgQAAAAAAIAAAAAABfQAAAAACfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAADfQAAAAADIAAAAAADIAAAAAACfQAAAAAAfQAAAAADgQAAAAAAYAAAAAACIAAAAAACgQAAAAAAIAAAAAADgQAAAAAAIAAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAABIAAAAAAAIAAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAACIAAAAAACIAAAAAACfQAAAAADfQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAABEwAAAAADEwAAAAACEwAAAAAAgQAAAAAAJQAAAAACIAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAACIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAEwAAAAADEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAADEwAAAAACIAAAAAAAJQAAAAAAIAAAAAABIAAAAAAC
+ tiles: fgAAAAAAgQAAAAAAfgAAAAABfgAAAAABfgAAAAACfgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAADfQAAAAABfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfgAAAAACgQAAAAAAfgAAAAABfgAAAAABfgAAAAABfgAAAAADgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAADfQAAAAACfQAAAAACQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfgAAAAABgQAAAAAAfgAAAAACfgAAAAACfgAAAAAAfgAAAAADgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACfQAAAAABfQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAADgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAYAAAAAABIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAADIAAAAAAAIAAAAAADgQAAAAAAcwAAAAADcwAAAAAAgQAAAAAAYAAAAAACIAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAYAAAAAADIAAAAAACgQAAAAAAIAAAAAADgQAAAAAAIAAAAAABfQAAAAACfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAADfQAAAAADIAAAAAADIAAAAAACfQAAAAAAfQAAAAADgQAAAAAAYAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAABIAAAAAAAIAAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAACIAAAAAACIAAAAAACfQAAAAADfQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAABEwAAAAADEwAAAAACEwAAAAAAgQAAAAAAJQAAAAACIAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAACIAAAAAAAJQAAAAAAIAAAAAAAIAAAAAAAEwAAAAADEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAADEwAAAAACIAAAAAAAJQAAAAAAIAAAAAABIAAAAAAC
version: 6
-2,0:
ind: -2,0
@@ -189,7 +189,7 @@ entities:
version: 6
0,-2:
ind: 0,-2
- tiles: YAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAAAwAAAAABAwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADYAAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAJQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYgAAAAADcwAAAAADcwAAAAACcwAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACcwAAAAACcwAAAAADcwAAAAAAYgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYgAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADYgAAAAADgQAAAAAAYAAAAAAAJQAAAAADcwAAAAACcwAAAAABMAAAAAACMAAAAAACMAAAAAADMAAAAAADcwAAAAADMAAAAAACMAAAAAACMAAAAAADMAAAAAAAcwAAAAACcwAAAAABJQAAAAACYAAAAAADJQAAAAACcwAAAAAAcwAAAAAAMAAAAAADMAAAAAADMAAAAAACMAAAAAADcwAAAAACMAAAAAACMAAAAAABMAAAAAADMAAAAAABcwAAAAACcwAAAAACJQAAAAACYAAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAABgQAAAAAAYAAAAAADgQAAAAAAYgAAAAAAYgAAAAACcwAAAAACcwAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAADcwAAAAABcwAAAAADYgAAAAABYgAAAAABgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACJQAAAAABYAAAAAABJQAAAAACYAAAAAACMAAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAADYAAAAAABMAAAAAADMAAAAAADMAAAAAABMAAAAAADMAAAAAAAYAAAAAADJQAAAAADYAAAAAACJQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADJQAAAAAAYAAAAAACYAAAAAABfgAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACJQAAAAADJQAAAAAAgQAAAAAAfgAAAAABfgAAAAADfgAAAAADfgAAAAAAfgAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAA
+ tiles: YAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAAAwAAAAABAwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADYAAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAJQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYgAAAAADcwAAAAADcwAAAAACcwAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACcwAAAAACcwAAAAADcwAAAAAAYgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYgAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADYgAAAAADgQAAAAAAYAAAAAAAJQAAAAADcwAAAAACcwAAAAABMAAAAAACMAAAAAACMAAAAAADMAAAAAADcwAAAAADMAAAAAACMAAAAAACMAAAAAADMAAAAAAAcwAAAAACcwAAAAABJQAAAAACYAAAAAADJQAAAAACcwAAAAAAcwAAAAAAMAAAAAADMAAAAAADMAAAAAACMAAAAAADcwAAAAACMAAAAAACMAAAAAABMAAAAAADMAAAAAABcwAAAAACcwAAAAACJQAAAAACYAAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAABgQAAAAAAYAAAAAADgQAAAAAAYgAAAAAAYgAAAAACcwAAAAACcwAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAADcwAAAAABcwAAAAADYgAAAAABYgAAAAABgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACJQAAAAABYAAAAAABJQAAAAACYAAAAAACMAAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAADYAAAAAABMAAAAAADMAAAAAADMAAAAAABMAAAAAADMAAAAAAAYAAAAAADJQAAAAADYAAAAAACJQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADJQAAAAAAYAAAAAACYAAAAAABfgAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAABfgAAAAADfgAAAAADfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAA
version: 6
-1,-2:
ind: -1,-2
@@ -329,7 +329,7 @@ entities:
version: 6
-5,2:
ind: -5,2
- tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA
version: 6
-4,2:
ind: -4,2
@@ -337,7 +337,7 @@ entities:
version: 6
-5,3:
ind: -5,3
- tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA
version: 6
-4,3:
ind: -4,3
@@ -493,7 +493,7 @@ entities:
version: 6
3,-1:
ind: 3,-1
- tiles: fQAAAAADFwAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAADgQAAAAAAYAAAAAAAYAAAAAACBgAAAAADBgAAAAACBgAAAAABBgAAAAACBgAAAAAAYAAAAAABYAAAAAACfQAAAAABFwAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYAAAAAABYAAAAAAABgAAAAADBgAAAAADBgAAAAADBgAAAAACBgAAAAAAYAAAAAAAYAAAAAABfQAAAAACfQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADgQAAAAAAYAAAAAABYAAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAADBgAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAAABgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAABJQAAAAAAYAAAAAACLQAAAAAALQAAAAAAYAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAAAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACIAAAAAADIAAAAAABJQAAAAADYAAAAAADLQAAAAAALQAAAAAAYAAAAAABIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABJQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAfgAAAAACfgAAAAABgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAfgAAAAAAfgAAAAACfgAAAAABfQAAAAACfQAAAAACfgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAA
+ tiles: fQAAAAADFwAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAADgQAAAAAAYAAAAAAAYAAAAAACBgAAAAADBgAAAAACBgAAAAABBgAAAAACBgAAAAAAYAAAAAABYAAAAAACfQAAAAABFwAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYAAAAAABYAAAAAAABgAAAAADBgAAAAADBgAAAAADBgAAAAACBgAAAAAAYAAAAAAAYAAAAAABfQAAAAACfQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADgQAAAAAAYAAAAAABYAAAAAABBgAAAAABBgAAAAABBgAAAAABBgAAAAADBgAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACBgAAAAABBgAAAAABBgAAAAABBgAAAAACBgAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAABgAAAAABBgAAAAAABgAAAAADBgAAAAAABgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAJQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAJQAAAAAAIAAAAAAAIAAAAAABJQAAAAAAYAAAAAACLQAAAAAALQAAAAAAYAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAAAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACIAAAAAADIAAAAAABJQAAAAADYAAAAAADLQAAAAAALQAAAAAAYAAAAAABIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABJQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAfgAAAAACfgAAAAABgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAfgAAAAAAfgAAAAACfgAAAAABfQAAAAACfQAAAAACfgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAawAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAA
version: 6
4,-1:
ind: 4,-1
@@ -657,7 +657,7 @@ entities:
version: 6
-6,2:
ind: -6,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA
version: 6
6,-2:
ind: 6,-2
@@ -679,6 +679,10 @@ entities:
ind: 5,1
tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
+ -6,3:
+ ind: -6,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
- type: Broadphase
- type: Physics
bodyStatus: InAir
@@ -1120,7 +1124,6 @@ entities:
15352: 41,-72
15979: -14,-11
15980: -10,-11
- 16045: 8,-11
16487: -61,-48
16488: -67,-46
16489: -61,-48
@@ -1176,7 +1179,6 @@ entities:
15929: -70,8
15942: -76,1
15965: -45,2
- 16124: 10,-12
16346: -22,-5
21520: -38,-36
21796: 25,20
@@ -1231,7 +1233,6 @@ entities:
15926: -74,8
15946: -79,1
15967: -47,2
- 16121: 6,-12
16351: -26,-5
21519: -39,-36
21795: 23,20
@@ -1273,7 +1274,6 @@ entities:
15917: -70,4
15951: -76,-2
15974: -45,-1
- 16132: 10,-17
16339: -22,-9
21518: -38,-37
21797: 25,18
@@ -1330,8 +1330,6 @@ entities:
15947: -79,-1
15948: -78,-2
15973: -47,-1
- 16116: 6,-17
- 16163: 6,-17
16338: -26,-9
21517: -39,-37
21794: 23,18
@@ -1692,8 +1690,6 @@ entities:
15943: -77,1
15955: -76,0
15976: -72,-3
- 16164: 6,-17
- 16165: 8,-12
21811: 23,19
21816: 24,18
- node:
@@ -1768,9 +1764,6 @@ entities:
15945: -77,1
15958: -79,0
15968: -47,1
- 16162: 6,-17
- 16166: 8,-12
- 16170: 10,-17
21812: 25,19
21813: 24,18
- node:
@@ -1832,7 +1825,6 @@ entities:
15858: -61,6
15939: -73,4
15956: -76,0
- 16172: 6,-12
21806: 23,19
21819: 24,20
21829: 24.747307,18.252583
@@ -1904,7 +1896,6 @@ entities:
15938: -73,4
15959: -79,0
15969: -47,1
- 16171: 10,-12
21808: 25,19
21821: 24,20
- node:
@@ -2193,20 +2184,6 @@ entities:
15964: -45,1
15970: -48,1
16044: 15,-9
- 16125: 10,-13
- 16126: 10,-14
- 16127: 10,-15
- 16128: 10,-15
- 16129: 10,-16
- 16130: 10,-16
- 16131: 10,-16
- 16155: 6,-13
- 16156: 6,-13
- 16157: 6,-15
- 16158: 6,-15
- 16159: 6,-16
- 16160: 6,-16
- 16161: 6,-14
16343: -22,-8
16344: -22,-7
16345: -22,-6
@@ -2469,16 +2446,6 @@ entities:
15966: -46,2
16049: 12,-11
16050: 13,-11
- 16122: 7,-12
- 16123: 9,-12
- 16138: 7,-17
- 16139: 8,-17
- 16140: 8,-17
- 16141: 8,-17
- 16142: 9,-17
- 16143: 9,-17
- 16168: 8,-12
- 16169: 8,-18
16347: -23,-5
16348: -24,-5
16349: -25,-5
@@ -2748,17 +2715,6 @@ entities:
15953: -77,2
15975: -46,-1
16048: 13,-11
- 16133: 7,-17
- 16134: 8,-17
- 16135: 8,-17
- 16136: 9,-17
- 16137: 9,-17
- 16150: 7,-12
- 16151: 8,-12
- 16152: 8,-12
- 16153: 9,-12
- 16154: 9,-12
- 16167: 8,-11
16340: -25,-9
16341: -24,-9
16342: -23,-9
@@ -3064,16 +3020,6 @@ entities:
15971: -47,0
15972: -47,-1
16043: 15,-9
- 16117: 6,-16
- 16118: 6,-15
- 16119: 6,-14
- 16120: 6,-13
- 16144: 10,-16
- 16145: 10,-15
- 16146: 10,-14
- 16147: 10,-14
- 16148: 10,-13
- 16149: 10,-13
16352: -26,-6
16353: -26,-7
16354: -26,-8
@@ -3268,7 +3214,6 @@ entities:
14655: -6,-77
14921: 58,-25
15737: 0,10
- 16106: 9,-13
21499: 27,7
22135: 0,-3
23134: 37,2
@@ -3380,7 +3325,6 @@ entities:
14654: -8,-77
14922: 55,-25
15738: -2,10
- 16107: 7,-13
16462: -43,23
21500: 25,7
22137: -2,-3
@@ -3441,7 +3385,6 @@ entities:
21394: 70,22
21402: 76,26
21437: 67,22
- 21528: 57,-1
21843: 56,25
21848: 54,22
21855: 47,22
@@ -3449,6 +3392,7 @@ entities:
22574: 73,4
22633: 73,-1
23479: 31,15
+ 23711: 58,-1
- node:
color: '#EFB341FF'
id: BrickTileSteelCornerSe
@@ -3483,7 +3427,6 @@ entities:
14734: -8,-66
14930: 58,-27
15736: 0,4
- 16109: 9,-16
16474: 9,-82
23142: 37,-2
23542: 24,28
@@ -3605,7 +3548,6 @@ entities:
14733: -1,-66
15297: -21,-18
15739: -2,4
- 16108: 7,-16
16475: 8,-82
23139: 33,-2
23543: 21,28
@@ -3982,8 +3924,6 @@ entities:
6107: 18,-10
6117: 18,-20
6154: -18,-19
- 6197: 14,-19
- 6225: 8,-19
6302: -11,-19
6303: -4,-19
6632: -29,30
@@ -4236,8 +4176,6 @@ entities:
6119: 16,-19
6156: -20,-15
6161: -21,-16
- 6196: 12,-19
- 6224: 8,-19
6243: -20,-20
6301: -13,-19
6304: -4,-19
@@ -4434,7 +4372,6 @@ entities:
21738: 43,6
21752: 71,18
21779: 58,4
- 21788: 57,0
21824: 60,6
21841: 53,4
21845: 54,25
@@ -4455,6 +4392,7 @@ entities:
23449: 34,19
23514: 29,19
23515: 27,19
+ 23710: 58,0
- node:
color: '#EFB341FF'
id: BrickTileSteelInnerSe
@@ -4561,7 +4499,6 @@ entities:
14931: 57,-27
15741: -1,4
15982: -18,-10
- 16072: 8,-10
16387: -30,46
22163: 2,-10
22205: -4,-5
@@ -4811,7 +4748,6 @@ entities:
15299: -21,-16
15740: -1,4
16068: 16,-10
- 16071: 8,-10
16379: -43,15
22162: -4,-10
22206: 2,-5
@@ -5559,8 +5495,6 @@ entities:
15986: -17,-10
16066: 15,-10
16067: 15,-9
- 16111: 9,-15
- 16112: 9,-14
16473: 9,-82
20840: 50,12
20844: 50,6
@@ -6039,12 +5973,7 @@ entities:
6183: 3,-19
6184: 4,-19
6185: 6,-19
- 6186: 7,-19
- 6187: 7,-19
6188: 5,-19
- 6189: 9,-19
- 6190: 10,-19
- 6191: 10,-19
6192: 11,-19
6216: -2,-22
6217: -1,-22
@@ -6264,8 +6193,6 @@ entities:
16032: -13,-12
16033: -12,-12
16034: -11,-12
- 16073: 8,-11
- 16113: 8,-13
20850: 55,5
21493: 32,6
21494: 31,6
@@ -6306,6 +6233,10 @@ entities:
23133: 36,2
23546: 22,30
23547: 23,30
+ 23817: 14,-19
+ 23818: 13,-19
+ 23819: 12,-19
+ 23820: 10,-19
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -6502,7 +6433,6 @@ entities:
21400: 73,26
21418: 67,26
21419: 68,26
- 21529: 58,0
21530: 59,0
21574: 61,19
21597: 56,19
@@ -6558,6 +6488,7 @@ entities:
23669: 55,4
23670: 56,4
23671: 57,4
+ 23712: 57,-1
- node:
color: '#EFB341FF'
id: BrickTileSteelLineS
@@ -6764,10 +6695,6 @@ entities:
6147: -16,-21
6148: -19,-21
6150: -18,-21
- 6193: 12,-18
- 6194: 13,-18
- 6195: 14,-18
- 6223: 8,-18
6306: 4,25
6307: 5,25
6308: 7,25
@@ -6976,8 +6903,6 @@ entities:
16010: -8,-10
16037: -14,-11
16038: -10,-11
- 16052: 9,-10
- 16053: 9,-10
16054: 10,-10
16055: 10,-10
16056: 12,-10
@@ -6989,8 +6914,6 @@ entities:
16062: 11,-10
16063: 11,-10
16069: 6,-10
- 16070: 7,-10
- 16110: 8,-16
16469: 8,-81
16470: 9,-81
16481: 8,-81
@@ -7783,8 +7706,6 @@ entities:
15985: -17,-10
16064: 15,-10
16065: 15,-9
- 16114: 7,-15
- 16115: 7,-14
16395: -2,-51
16396: -2,-52
16397: -2,-50
@@ -7891,6 +7812,11 @@ entities:
21294: 67,11
21379: 65,7
21380: 67,7
+ 23739: 11,-16
+ 23740: 11,-14
+ 23748: 8,-18
+ 23755: 6,-14
+ 23838: 8,-11
- node:
color: '#9C2020FF'
id: BrickTileWhiteBox
@@ -7943,6 +7869,13 @@ entities:
15572: 45,-62
15584: 42,-70
15594: 42,-73
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 23715: 14,-13
+ 23716: 14,-16
+ 23800: 10,-13
- node:
color: '#52B4E9FF'
id: BrickTileWhiteCornerNe
@@ -8105,6 +8038,13 @@ entities:
15491: 26,-66
15546: 38,-60
15593: 38,-73
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 23717: 12,-13
+ 23758: 4,-15
+ 23794: 6,-13
- node:
color: '#52B4E9FF'
id: BrickTileWhiteCornerNw
@@ -8264,6 +8204,13 @@ entities:
15583: 42,-71
15600: 42,-75
15601: 39,-75
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 23720: 14,-17
+ 23721: 14,-14
+ 23763: 6,-17
- node:
color: '#52B4E9FF'
id: BrickTileWhiteCornerSe
@@ -8425,6 +8372,12 @@ entities:
15578: 38,-71
15598: 38,-75
15599: 41,-75
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 23719: 12,-17
+ 23761: 4,-17
- node:
color: '#52B4E9FF'
id: BrickTileWhiteCornerSw
@@ -8571,6 +8524,11 @@ entities:
decals:
19659: 48,34
19686: 48,36
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteEndE
+ decals:
+ 23744: 14,-15
- node:
color: '#52B4E9FF'
id: BrickTileWhiteEndE
@@ -8640,6 +8598,11 @@ entities:
decals:
15170: 69,-50
15171: 70,-50
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteEndW
+ decals:
+ 23745: 12,-15
- node:
color: '#52B4E9FF'
id: BrickTileWhiteEndW
@@ -8715,6 +8678,10 @@ entities:
id: BrickTileWhiteInnerNe
decals:
23329: 67,9
+ 23786: 10,-14
+ 23801: 8,-13
+ 23825: 8,-19
+ 23826: 6,-19
- node:
color: '#52B4E9FF'
id: BrickTileWhiteInnerNe
@@ -8850,7 +8817,6 @@ entities:
13552: -13,-41
13567: -22,-31
13568: -22,-26
- 13669: -4,-48
13675: -6,-52
13691: -10,-49
13706: -6,-46
@@ -9095,6 +9061,11 @@ entities:
id: BrickTileWhiteInnerNw
decals:
21253: 65,9
+ 23737: 12,-14
+ 23760: 6,-15
+ 23797: 8,-13
+ 23824: 8,-19
+ 23827: 10,-19
- node:
color: '#52B4E9FF'
id: BrickTileWhiteInnerNw
@@ -9478,6 +9449,10 @@ entities:
id: BrickTileWhiteInnerSe
decals:
23330: 67,9
+ 23784: 10,-14
+ 23810: 8,-16
+ 23831: 6,-10
+ 23832: 8,-10
- node:
color: '#52B4E9FF'
id: BrickTileWhiteInnerSe
@@ -9601,7 +9576,6 @@ entities:
13553: -13,-41
13557: -13,-36
13566: -22,-31
- 13670: -4,-48
13676: -6,-51
13858: -29,-36
13859: -24,-36
@@ -9849,6 +9823,10 @@ entities:
id: BrickTileWhiteInnerSw
decals:
21254: 65,9
+ 23738: 12,-16
+ 23787: 8,-13
+ 23833: 10,-10
+ 23834: 8,-10
- node:
color: '#52B4E9FF'
id: BrickTileWhiteInnerSw
@@ -10299,6 +10277,11 @@ entities:
21250: 65,8
21291: 65,10
21292: 67,10
+ 23756: 6,-15
+ 23757: 6,-16
+ 23779: 10,-15
+ 23798: 8,-12
+ 23806: 8,-17
- node:
color: '#52B4E9FF'
id: BrickTileWhiteLineE
@@ -10651,7 +10634,7 @@ entities:
13998: -21,-58
14009: -13,-58
14010: -13,-57
- 16408: -4,-48
+ 23868: -4,-48
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteLineE
@@ -11207,6 +11190,15 @@ entities:
21288: 64,9
23327: 69,9
23328: 68,9
+ 23723: 13,-13
+ 23724: 13,-16
+ 23735: 12,-16
+ 23746: 13,-15
+ 23759: 5,-15
+ 23795: 7,-13
+ 23799: 9,-13
+ 23821: 9,-19
+ 23822: 7,-19
- node:
color: '#52B4E9FF'
id: BrickTileWhiteLineN
@@ -12030,7 +12022,6 @@ entities:
16187: -12,-10
16188: -11,-10
16189: -11,-10
- 16197: 9,-10
16198: 10,-10
16199: 11,-10
16200: 12,-10
@@ -12041,7 +12032,6 @@ entities:
20636: 36,4
20637: 37,4
20638: 38,4
- 22084: 7,-10
22085: 6,-10
22086: 5,-10
22176: -9,-10
@@ -12052,6 +12042,8 @@ entities:
23211: 41,4
23212: 40,4
23254: 35,-2
+ 23835: 7,-10
+ 23836: 9,-10
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineS
@@ -12177,6 +12169,16 @@ entities:
21287: 64,9
23325: 68,9
23326: 69,9
+ 23725: 13,-17
+ 23726: 13,-14
+ 23736: 12,-14
+ 23747: 13,-15
+ 23765: 5,-17
+ 23769: 7,-13
+ 23808: 9,-16
+ 23809: 10,-16
+ 23828: 7,-10
+ 23829: 9,-10
- node:
color: '#52B4E9FF'
id: BrickTileWhiteLineS
@@ -12886,14 +12888,7 @@ entities:
7540: 17,0
7541: 17,-8
7542: 17,-15
- 7543: 9,-19
- 7544: 10,-19
7545: 11,-19
- 7546: 12,-19
- 7547: 12,-19
- 7548: 12,-19
- 7549: 13,-19
- 7550: 7,-19
7551: 6,-19
7552: 4,-19
7553: 3,-19
@@ -13032,6 +13027,11 @@ entities:
23220: 41,7
23221: 41,11
23258: 35,2
+ 23812: 7,-19
+ 23813: 9,-19
+ 23814: 10,-19
+ 23815: 12,-19
+ 23816: 13,-19
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineW
@@ -13153,6 +13153,12 @@ entities:
21289: 65,10
21290: 67,10
23331: 67,9
+ 23762: 8,-15
+ 23764: 8,-14
+ 23766: 4,-16
+ 23768: 8,-16
+ 23796: 8,-12
+ 23807: 8,-17
- node:
color: '#52B4E9FF'
id: BrickTileWhiteLineW
@@ -14223,7 +14229,6 @@ entities:
11675: -52,18
18222: 30,-22
18224: -29,14
- 18225: -4,-48
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -16569,8 +16574,6 @@ entities:
20147: 58,1
20148: 59,2
20149: 57,2
- 20150: 57,0
- 20151: 58,0
20152: 59,0
20153: 57,1
20154: 58,1
@@ -16923,12 +16926,22 @@ entities:
920: -7.0083566,-72.05837
921: -1.9771061,-72.02712
3633: -21,52
+ - node:
+ color: '#16212EFF'
+ id: FullTileOverlayGreyscale
+ decals:
+ 23714: 2,10
- node:
color: '#334E6DC8'
id: FullTileOverlayGreyscale
decals:
3223: -3,10
3224: -3,8
+ - node:
+ color: '#3778B8FF'
+ id: FullTileOverlayGreyscale
+ decals:
+ 23713: -4,10
- node:
color: '#52B4E996'
id: FullTileOverlayGreyscale
@@ -17947,10 +17960,11 @@ entities:
1198: -27,-50
1206: -9,-46
1210: -27,-54
- 3340: 14,-15
14955: -52,29
14971: -59,29
22509: 76,10
+ 23864: -65,54
+ 23865: -66,55
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -17970,9 +17984,9 @@ entities:
1199: -31,-50
1207: -11,-46
1209: -30,-54
- 3339: 12,-15
14954: -54,29
22508: 74,10
+ 23852: -73,54
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -17992,10 +18006,11 @@ entities:
decals:
1208: -9,-48
1212: -27,-55
- 3337: 14,-17
14951: -52,27
14972: -59,27
22511: 76,8
+ 23862: -65,50
+ 23863: -66,49
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -18014,9 +18029,9 @@ entities:
decals:
1205: -11,-48
1211: -30,-55
- 3338: 12,-17
14952: -54,27
22507: 74,8
+ 23853: -73,50
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -18043,6 +18058,7 @@ entities:
14979: -63,21
14981: -61,29
16014: -9,-14
+ 23866: -66,54
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
@@ -18068,6 +18084,7 @@ entities:
16019: -13,-12
16020: -11,-12
16026: -14,-17
+ 23867: -66,50
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -18119,6 +18136,17 @@ entities:
21378: 67,7
23332: 69,10
23333: 69,8
+ 23727: 8,-18
+ 23729: 11,-16
+ 23730: 11,-14
+ 23741: 12,-15
+ 23742: 13,-15
+ 23743: 14,-15
+ 23750: 6,-14
+ 23788: 7,-12
+ 23789: 9,-12
+ 23790: 10,-12
+ 23837: 8,-11
- node:
color: '#52B4E9FF'
id: WarnFullGreyscale
@@ -18231,6 +18259,7 @@ entities:
23465: 29,21
23466: 29,18
23467: 27,18
+ 23811: 6,-12
- node:
color: '#FFA647FF'
id: WarnFullGreyscale
@@ -18269,7 +18298,6 @@ entities:
2749: -64,-26
2750: -64,-27
2751: -64,-28
- 3335: 14,-16
8572: -16,13
8573: -16,14
8574: -16,15
@@ -18309,6 +18337,9 @@ entities:
20908: 54,-3
21763: 70,16
22505: 76,9
+ 23841: -65,53
+ 23842: -65,52
+ 23843: -65,51
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -18347,6 +18378,12 @@ entities:
id: WarnLineGreyscaleE
decals:
19497: 44,37
+ - node:
+ color: '#4B709CFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 23734: 10,-14
+ 23804: 10,-16
- node:
color: '#52B4E9FF'
id: WarnLineGreyscaleE
@@ -18470,6 +18507,9 @@ entities:
21268: 67,10
21381: 65,6
21382: 67,6
+ 23751: 6,-15
+ 23791: 8,-12
+ 23823: 8,-19
- node:
color: '#9FED58FF'
id: WarnLineGreyscaleN
@@ -18548,6 +18588,9 @@ entities:
decals:
21238: 67,8
21239: 65,8
+ 23792: 6,-13
+ 23805: 8,-17
+ 23830: 8,-10
- node:
color: '#52B4E9FF'
id: WarnLineGreyscaleS
@@ -18643,6 +18686,8 @@ entities:
id: WarnLineGreyscaleW
decals:
21269: 64,9
+ 23731: 12,-16
+ 23732: 12,-14
- node:
color: '#52B4E9FF'
id: WarnLineGreyscaleW
@@ -18723,7 +18768,6 @@ entities:
2744: -61,-23
2745: -62,-23
2746: -63,-23
- 3336: 13,-17
11280: -59,0
11281: -59,0
11282: -58,0
@@ -18742,6 +18786,10 @@ entities:
14985: -60,27
16022: -16,-12
22504: 75,8
+ 23844: -70,50
+ 23845: -69,50
+ 23846: -68,50
+ 23854: -72,50
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -18790,7 +18838,6 @@ entities:
2741: -60,-26
2742: -60,-25
2743: -60,-24
- 3334: 12,-16
8581: 14,13
8582: 14,14
8583: 14,15
@@ -18857,7 +18904,6 @@ entities:
2752: -63,-29
2753: -62,-29
2754: -61,-29
- 3298: 13,-15
11311: -59,-16
11312: -58,-16
11313: -57,-16
@@ -18874,6 +18920,10 @@ entities:
16028: -12,-19
16029: -11,-19
22506: 75,10
+ 23849: -68,54
+ 23850: -69,54
+ 23851: -70,54
+ 23855: -72,54
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -18964,7 +19014,6 @@ entities:
decals:
21933: 2,-13
21934: 1,-11
- 21961: 3,-15
21988: 0,2
22439: 76,2
22484: 79,-3
@@ -19014,7 +19063,6 @@ entities:
17409: -49,-43
20798: 51,2
21884: -4,-15
- 21894: 3,-15
23114: 34,14
23123: 38,10
- node:
@@ -19300,14 +19348,12 @@ entities:
id: WoodTrimThinEndS
decals:
21957: -5,-16
- 21959: 3,-16
- node:
color: '#FFFFFFFF'
id: WoodTrimThinEndS
decals:
18276: 26,9
21885: -5,-16
- 21895: 3,-16
22261: 30,8
23110: 33,12
23112: 34,12
@@ -19316,7 +19362,6 @@ entities:
color: '#EEC7ABFF'
id: WoodTrimThinEndW
decals:
- 21960: 2,-15
22433: 74,1
22589: 73,-4
- node:
@@ -19328,7 +19373,6 @@ entities:
18291: 21,11
20778: 49,1
21127: 44,16
- 21893: 2,-15
22259: 29,10
22271: 29,13
23113: 33,14
@@ -19341,7 +19385,6 @@ entities:
21942: 1,-11
21945: 2,-13
21971: -4,-15
- 21972: 3,-15
22019: -7,-3
22020: -7,2
22025: 0,2
@@ -19394,7 +19437,6 @@ entities:
20796: 51,1
20799: 53,1
21891: -4,-15
- 21900: 3,-15
22570: 74,-7
- node:
color: '#EEC7ABFF'
@@ -19404,7 +19446,6 @@ entities:
21943: -3,-11
21944: -4,-13
21970: -5,-15
- 21973: 2,-15
22018: -4,-3
22021: -7,2
22026: -4,2
@@ -19452,7 +19493,6 @@ entities:
20810: 50,1
21129: 45,16
21892: -5,-15
- 21901: 2,-15
- node:
color: '#EEC7ABFF'
id: WoodTrimThinInnerSe
@@ -19460,7 +19500,6 @@ entities:
21966: -5,-15
21967: -5,-16
21968: -4,-15
- 21969: 3,-16
22023: -4,-1
22024: 0,-1
22058: 5,-3
@@ -19510,17 +19549,13 @@ entities:
21887: -5,-15
21888: -4,-15
21890: -5,-16
- 21899: 3,-16
22269: 30,10
23128: 36,9
- node:
color: '#EEC7ABFF'
id: WoodTrimThinInnerSw
decals:
- 21962: 3,-15
21963: -5,-16
- 21964: 3,-16
- 21965: 2,-15
22022: -7,-3
22057: 2,-3
22537: 76,1
@@ -19559,9 +19594,6 @@ entities:
18285: 23,11
20784: 52,1
21889: -5,-16
- 21896: 3,-15
- 21897: 3,-16
- 21898: 2,-15
22270: 30,10
23115: 34,14
- node:
@@ -20965,7 +20997,7 @@ entities:
-1,0:
0: 4095
0,-4:
- 0: 29951
+ 0: 29815
0,-3:
0: 65399
0,-2:
@@ -21021,9 +21053,9 @@ entities:
0,3:
0: 65531
0,-5:
- 0: 62719
+ 0: 29951
1,-4:
- 0: 52445
+ 0: 50295
1: 4096
1,-3:
1: 1
@@ -21034,11 +21066,11 @@ entities:
1,-1:
0: 15288
1,-5:
- 0: 53503
+ 0: 28927
1,0:
0: 35771
2,-4:
- 0: 30583
+ 0: 32639
2,-3:
0: 65303
2,-2:
@@ -21223,8 +21255,8 @@ entities:
-2,8:
0: 3838
-1,5:
- 0: 65286
- 1: 8
+ 0: 65280
+ 1: 14
-1,6:
0: 60943
-1,7:
@@ -21352,7 +21384,7 @@ entities:
0: 56671
8,6:
0: 1
- 1: 3264
+ 1: 7616
5,0:
0: 20479
5,1:
@@ -22380,21 +22412,21 @@ entities:
-18,1:
0: 30583
-18,2:
- 0: 30487
- -18,3:
0: 65303
+ -18,3:
+ 0: 65311
-18,4:
0: 15
1: 65280
+ -17,2:
+ 0: 56780
-17,3:
- 0: 64960
+ 0: 64961
-17,4:
0: 3277
1: 256
-17,1:
0: 52428
- -17,2:
- 0: 52428
-16,0:
0: 3059
-16,1:
@@ -22685,12 +22717,14 @@ entities:
1: 19708
-21,10:
1: 240
+ -20,11:
+ 1: 20319
+ -21,11:
+ 1: 24351
-20,9:
1: 19532
- -20,11:
- 1: 19532
-20,12:
- 1: 19532
+ 1: 65524
-19,9:
1: 13107
6: 2184
@@ -22698,11 +22732,10 @@ entities:
1: 13107
3: 2184
-19,11:
- 1: 13107
+ 1: 819
3: 2184
-19,12:
- 1: 13107
- 3: 2184
+ 0: 28398
-18,9:
6: 819
1: 34952
@@ -22711,10 +22744,10 @@ entities:
1: 34952
-18,11:
3: 819
- 1: 34952
+ 1: 2184
-18,12:
- 3: 819
- 1: 34952
+ 0: 3551
+ 3: 49152
-17,9:
0: 3822
-17,10:
@@ -22722,7 +22755,8 @@ entities:
-17,11:
0: 61166
-17,12:
- 0: 61166
+ 0: 52703
+ 3: 4096
-16,9:
0: 20479
-16,10:
@@ -22761,38 +22795,48 @@ entities:
0: 7163
-12,11:
0: 65535
- -20,15:
- 1: 60040
+ -21,12:
+ 1: 22485
-20,13:
- 1: 34956
+ 1: 45055
+ -21,13:
+ 1: 24405
+ -20,14:
+ 1: 40739
+ -21,14:
+ 1: 8029
+ -20,15:
+ 1: 60047
+ -21,15:
+ 1: 15
-20,16:
1: 40772
- -19,13:
- 1: 8995
- 3: 2184
- -20,14:
- 1: 34824
-19,14:
- 1: 12271
+ 1: 12032
+ 0: 14
-19,15:
1: 61986
+ -19,13:
+ 0: 61038
-19,16:
1: 32546
-18,13:
- 3: 819
- 1: 34952
+ 0: 56579
+ 3: 204
-18,14:
- 1: 20351
+ 0: 15
+ 1: 20224
-18,15:
1: 62532
-18,16:
1: 20292
+ -17,13:
+ 3: 17
+ 0: 56780
-17,14:
- 0: 3982
+ 0: 3983
-17,15:
1: 62532
- -17,13:
- 0: 61166
-17,16:
1: 12100
-16,13:
@@ -23525,8 +23569,7 @@ entities:
-7,-21:
1: 25881
-6,-20:
- 0: 2575
- 7: 256
+ 0: 2831
-6,-19:
0: 48059
-6,-18:
@@ -23682,24 +23725,30 @@ entities:
8,12:
1: 8738
9,8:
- 1: 35980
+ 1: 30005
9,7:
- 1: 17476
+ 1: 21828
9,9:
- 1: 35020
+ 1: 40789
+ 9,10:
+ 1: 3827
10,9:
1: 4096
0: 3310
+ 10,10:
+ 1: 61699
10,8:
0: 20192
- 10,10:
- 1: 207
10,7:
0: 26495
11,9:
0: 3580
+ 10,11:
+ 1: 8
11,10:
- 1: 31
+ 1: 62464
+ 11,11:
+ 1: 1
11,7:
0: 65535
11,8:
@@ -23710,7 +23759,7 @@ entities:
0: 477
1: 49152
12,10:
- 1: 55
+ 1: 61494
9,13:
1: 819
8,-2:
@@ -23871,7 +23920,7 @@ entities:
20,-4:
1: 13099
20,-2:
- 1: 24832
+ 1: 27076
20,-1:
0: 5456
1: 16388
@@ -24053,6 +24102,8 @@ entities:
0: 61423
12,2:
0: 61422
+ 8,7:
+ 1: 2289
9,5:
0: 61007
9,6:
@@ -24109,13 +24160,34 @@ entities:
0: 85
1: 25600
20,1:
- 1: 3
+ 1: 4075
19,1:
- 1: 16703
+ 1: 20287
+ 20,3:
+ 1: 50738
+ 19,3:
+ 1: 50368
+ 0: 1
+ 21,1:
+ 1: 1993
+ 20,4:
+ 1: 12696
+ 21,0:
+ 1: 12834
+ 21,-1:
+ 1: 8747
+ 22,1:
+ 1: 1
+ 22,0:
+ 1: 4369
+ 22,-1:
+ 1: 4369
20,-3:
- 1: 170
+ 1: 25258
21,-3:
- 1: 16
+ 1: 8752
+ 21,-2:
+ 1: 39366
8,24:
0: 1807
1: 61456
@@ -24143,25 +24215,40 @@ entities:
1: 3856
9,25:
1: 273
+ 12,11:
+ 1: 3
13,8:
0: 30576
13,9:
0: 55
1: 63488
+ 13,10:
+ 1: 61451
13,7:
0: 65535
- 13,10:
+ 13,11:
1: 3
+ 14,8:
+ 1: 51216
14,9:
- 1: 28416
+ 1: 32566
+ 14,10:
+ 1: 29889
14,7:
0: 4369
- 15,9:
- 1: 307
15,8:
- 1: 27776
+ 1: 28086
+ 15,9:
+ 1: 19891
+ 15,10:
+ 1: 54
+ 15,7:
+ 1: 49152
+ 0: 8
16,8:
- 1: 3953
+ 1: 45043
+ 16,9:
+ 1: 58270
17,-12:
0: 65508
17,-11:
@@ -24308,20 +24395,33 @@ entities:
0: 13107
1: 19468
16,7:
+ 1: 4096
0: 52429
17,8:
- 1: 36752
+ 1: 65296
+ 0: 224
+ 17,9:
+ 1: 61471
17,7:
0: 65535
18,8:
- 1: 3568
+ 0: 240
+ 1: 65280
+ 18,9:
+ 1: 61455
18,7:
0: 32767
19,8:
- 1: 319
+ 0: 19
+ 1: 32640
+ 19,9:
+ 1: 31875
19,7:
- 1: 60484
- 0: 17
+ 0: 25685
+ 20,8:
+ 1: 51355
+ 20,9:
+ 1: 23
16,4:
0: 65295
16,5:
@@ -24332,8 +24432,6 @@ entities:
0: 64845
15,6:
0: 35101
- 15,7:
- 0: 8
17,4:
0: 65421
17,5:
@@ -24343,27 +24441,29 @@ entities:
17,3:
0: 56605
18,4:
- 0: 12801
- 1: 34956
+ 0: 47617
+ 1: 128
18,5:
- 0: 65282
- 1: 8
+ 0: 65290
18,6:
0: 65535
18,3:
0: 4559
- 1: 49152
19,4:
- 1: 32767
+ 1: 52472
+ 0: 13056
19,5:
- 1: 52455
- 0: 4096
+ 0: 21603
+ 1: 34956
19,6:
- 0: 4369
- 1: 52420
- 19,3:
- 1: 37444
- 0: 1
+ 0: 21845
+ 1: 34952
+ 20,5:
+ 1: 13107
+ 20,6:
+ 1: 13107
+ 20,7:
+ 1: 13107
-27,-4:
1: 16452
-27,-5:
@@ -24602,6 +24702,16 @@ entities:
22,-11:
1: 803
0: 16
+ 21,8:
+ 1: 1
+ 21,7:
+ 1: 4369
+ 21,4:
+ 1: 4368
+ 21,5:
+ 1: 4369
+ 21,6:
+ 1: 4369
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -24708,21 +24818,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 23.722694
- - 89.24252
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
chunkSize: 4
- type: OccluderTree
- type: Shuttle
@@ -24754,25 +24849,6 @@ entities:
- type: ContainedSolution
containerName: food
container: 3
- - uid: 6
- mapInit: true
- paused: true
- components:
- - type: MetaData
- name: solution - food
- - type: Transform
- parent: 5
- - type: Solution
- solution:
- maxVol: 1
- name: food
- reagents:
- - data: []
- ReagentId: Fiber
- Quantity: 1
- - type: ContainedSolution
- containerName: food
- container: 5
- uid: 8
mapInit: true
paused: true
@@ -24819,6 +24895,15 @@ entities:
parent: 12
- type: InstantAction
container: 12
+ - uid: 27365
+ mapInit: true
+ paused: true
+ components:
+ - type: Transform
+ parent: 25968
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 25968
- proto: AirAlarm
entities:
- uid: 14
@@ -26238,6 +26323,45 @@ entities:
- 23126
- 19024
- 19025
+ - uid: 31484
+ components:
+ - type: Transform
+ pos: 12.5,-11.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 580
+ - 38572
+ - 25980
+ - 38569
+ - 29959
+ - uid: 31700
+ components:
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 38645
+ - 27470
+ - 13368
+ - 38639
+ - uid: 33020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-11.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 27146
+ - 38623
+ - 38644
+ - 38637
+ - 38638
+ - 38639
+ - 29959
+ - 38569
- proto: AirAlarmElectronics
entities:
- uid: 111
@@ -26773,6 +26897,35 @@ entities:
- type: Transform
pos: 2.5,-3.5
parent: 2
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 8.5,-10.5
+ parent: 2
+ - uid: 38610
+ components:
+ - type: Transform
+ pos: 8.5,-17.5
+ parent: 2
+- proto: AirlockBlueShieldLocked
+ entities:
+ - uid: 38575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-13.5
+ parent: 2
+ - uid: 38576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-15.5
+ parent: 2
+ - uid: 38619
+ components:
+ - type: Transform
+ pos: 6.5,-13.5
+ parent: 2
- proto: AirlockBrigGlassLocked
entities:
- uid: 198
@@ -26791,7 +26944,7 @@ entities:
pos: 53.5,3.5
parent: 2
- type: Door
- secondsUntilStateChange: -2570.8796
+ secondsUntilStateChange: -19142.947
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -27768,6 +27921,18 @@ entities:
346:
- - DoorStatus
- DoorBolt
+ - uid: 19905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,52.5
+ parent: 2
+ - uid: 23378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,52.5
+ parent: 2
- proto: AirlockExternalGlassLocked
entities:
- uid: 348
@@ -28263,6 +28428,12 @@ entities:
parent: 2
- proto: AirlockLawyerLocked
entities:
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,10.5
+ parent: 2
- uid: 425
components:
- type: Transform
@@ -28362,18 +28533,6 @@ entities:
- type: Transform
pos: 12.5,-2.5
parent: 2
-- proto: AirlockMaintCommonLocked
- entities:
- - uid: 439
- components:
- - type: Transform
- pos: -37.5,58.5
- parent: 2
- - uid: 440
- components:
- - type: Transform
- pos: -35.5,58.5
- parent: 2
- proto: AirlockMaintEngiLocked
entities:
- uid: 441
@@ -28430,6 +28589,16 @@ entities:
parent: 2
- proto: AirlockMaintLocked
entities:
+ - uid: 439
+ components:
+ - type: Transform
+ pos: -37.5,58.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ pos: -35.5,58.5
+ parent: 2
- uid: 448
components:
- type: Transform
@@ -29173,14 +29342,6 @@ entities:
- type: Transform
pos: 4.5,-47.5
parent: 2
-- proto: AirlockNrepLocked
- entities:
- - uid: 569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,10.5
- parent: 2
- proto: AirlockNtrepGlassLocked
entities:
- uid: 570
@@ -29235,12 +29396,6 @@ entities:
parent: 2
- proto: AirlockSalvageGlassLocked
entities:
- - uid: 577
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-15.5
- parent: 2
- uid: 578
components:
- type: Transform
@@ -29252,18 +29407,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 26.5,50.5
parent: 2
-- proto: AirlockSalvageLocked
- entities:
- - uid: 580
- components:
- - type: Transform
- pos: 8.5,-17.5
- parent: 2
- - uid: 581
- components:
- - type: Transform
- pos: 8.5,-10.5
- parent: 2
- proto: AirlockScienceGlassLocked
entities:
- uid: 582
@@ -30650,6 +30793,30 @@ entities:
- invalid
deviceLists:
- 53
+ - uid: 38572
+ components:
+ - type: Transform
+ pos: 12.5,-14.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31484
+ - uid: 38644
+ components:
+ - type: Transform
+ pos: 10.5,-12.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33020
+ - uid: 38645
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31700
- proto: AltarBananium
entities:
- uid: 770
@@ -30737,6 +30904,13 @@ entities:
- type: Transform
pos: 45.505985,33.48445
parent: 2
+ - uid: 29972
+ components:
+ - type: Transform
+ parent: 26027
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: APCBasic
entities:
- uid: 784
@@ -31873,6 +32047,16 @@ entities:
- type: Transform
pos: 28.5,25.5
parent: 2
+ - uid: 27567
+ components:
+ - type: Transform
+ pos: 14.5,-11.5
+ parent: 2
+ - uid: 31480
+ components:
+ - type: Transform
+ pos: 5.5,-13.5
+ parent: 2
- proto: APCElectronics
entities:
- uid: 944
@@ -32057,6 +32241,11 @@ entities:
- type: Transform
pos: 78.27864,-0.97520024
parent: 2
+ - uid: 38666
+ components:
+ - type: Transform
+ pos: 8.273648,-14.399821
+ parent: 2
- proto: AsimovCircuitBoard
entities:
- uid: 981
@@ -32318,6 +32507,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 30.5,53.5
parent: 2
+ - uid: 14108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,52.5
+ parent: 2
- proto: AtmosDeviceFanTiny
entities:
- uid: 1025
@@ -32609,18 +32804,14 @@ entities:
- type: Transform
pos: -53.5,54.5
parent: 2
+ - uid: 23362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,52.5
+ parent: 2
- proto: AtmosFixBlockerMarker
entities:
- - uid: 1075
- components:
- - type: Transform
- pos: -70.5,52.5
- parent: 2
- - uid: 1076
- components:
- - type: Transform
- pos: -71.5,53.5
- parent: 2
- uid: 1077
components:
- type: Transform
@@ -32636,51 +32827,6 @@ entities:
- type: Transform
pos: 66.5,-32.5
parent: 2
- - uid: 1080
- components:
- - type: Transform
- pos: -71.5,50.5
- parent: 2
- - uid: 1081
- components:
- - type: Transform
- pos: -70.5,49.5
- parent: 2
- - uid: 1082
- components:
- - type: Transform
- pos: -72.5,50.5
- parent: 2
- - uid: 1083
- components:
- - type: Transform
- pos: -72.5,49.5
- parent: 2
- - uid: 1084
- components:
- - type: Transform
- pos: -70.5,48.5
- parent: 2
- - uid: 1085
- components:
- - type: Transform
- pos: -71.5,49.5
- parent: 2
- - uid: 1086
- components:
- - type: Transform
- pos: -70.5,50.5
- parent: 2
- - uid: 1087
- components:
- - type: Transform
- pos: -71.5,48.5
- parent: 2
- - uid: 1088
- components:
- - type: Transform
- pos: -72.5,48.5
- parent: 2
- uid: 1089
components:
- type: Transform
@@ -32836,41 +32982,6 @@ entities:
- type: Transform
pos: -76.5,21.5
parent: 2
- - uid: 1120
- components:
- - type: Transform
- pos: -71.5,52.5
- parent: 2
- - uid: 1121
- components:
- - type: Transform
- pos: -72.5,53.5
- parent: 2
- - uid: 1122
- components:
- - type: Transform
- pos: -71.5,54.5
- parent: 2
- - uid: 1123
- components:
- - type: Transform
- pos: -70.5,54.5
- parent: 2
- - uid: 1124
- components:
- - type: Transform
- pos: -72.5,54.5
- parent: 2
- - uid: 1125
- components:
- - type: Transform
- pos: -72.5,52.5
- parent: 2
- - uid: 1126
- components:
- - type: Transform
- pos: -70.5,53.5
- parent: 2
- uid: 1127
components:
- type: Transform
@@ -32936,6 +33047,51 @@ entities:
- type: Transform
pos: -76.5,20.5
parent: 2
+ - uid: 6402
+ components:
+ - type: Transform
+ pos: -67.5,53.5
+ parent: 2
+ - uid: 6403
+ components:
+ - type: Transform
+ pos: -68.5,51.5
+ parent: 2
+ - uid: 6404
+ components:
+ - type: Transform
+ pos: -68.5,53.5
+ parent: 2
+ - uid: 6412
+ components:
+ - type: Transform
+ pos: -69.5,52.5
+ parent: 2
+ - uid: 7698
+ components:
+ - type: Transform
+ pos: -68.5,52.5
+ parent: 2
+ - uid: 13848
+ components:
+ - type: Transform
+ pos: -69.5,53.5
+ parent: 2
+ - uid: 22209
+ components:
+ - type: Transform
+ pos: -67.5,51.5
+ parent: 2
+ - uid: 22227
+ components:
+ - type: Transform
+ pos: -67.5,52.5
+ parent: 2
+ - uid: 22828
+ components:
+ - type: Transform
+ pos: -69.5,51.5
+ parent: 2
- proto: AtmosFixFreezerMarker
entities:
- uid: 1140
@@ -33246,11 +33402,6 @@ entities:
- type: Transform
pos: -3.5,-42.5
parent: 2
- - uid: 1200
- components:
- - type: Transform
- pos: -58.5,20.5
- parent: 2
- uid: 1201
components:
- type: Transform
@@ -33261,6 +33412,11 @@ entities:
- type: Transform
pos: -9.5,-31.5
parent: 2
+ - uid: 25193
+ components:
+ - type: Transform
+ pos: -59.5,20.5
+ parent: 2
- proto: AutolatheMachineCircuitboard
entities:
- uid: 1203
@@ -34078,6 +34234,26 @@ entities:
- type: Transform
pos: -23.5,-80.5
parent: 2
+ - uid: 2439
+ components:
+ - type: Transform
+ pos: 14.5,-15.5
+ parent: 2
+ - uid: 13354
+ components:
+ - type: Transform
+ pos: 14.5,-16.5
+ parent: 2
+ - uid: 29653
+ components:
+ - type: Transform
+ pos: 14.5,-13.5
+ parent: 2
+ - uid: 32942
+ components:
+ - type: Transform
+ pos: 14.5,-12.5
+ parent: 2
- proto: BedsheetBlack
entities:
- uid: 1350
@@ -34112,11 +34288,6 @@ entities:
parent: 2
- proto: BedsheetClown
entities:
- - uid: 1354
- components:
- - type: Transform
- pos: -36.5,2.5
- parent: 2
- uid: 1355
components:
- type: Transform
@@ -34129,50 +34300,6 @@ entities:
- type: Transform
pos: -25.5,-14.5
parent: 2
-- proto: BedsheetGrey
- entities:
- - uid: 1357
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.19425,-17.35803
- parent: 2
- - uid: 1358
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.646782,-17.382492
- parent: 2
- - uid: 1359
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.781319,-17.394724
- parent: 2
- - uid: 1360
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.438862,-17.382492
- parent: 2
- - uid: 1361
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.57049,-17.419184
- parent: 2
- - uid: 1362
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.876255,-17.3458
- parent: 2
- - uid: 1363
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.900717,-17.3458
- parent: 2
- proto: BedsheetMedical
entities:
- uid: 1364
@@ -34284,6 +34411,28 @@ entities:
- type: Transform
pos: -4.5,28.5
parent: 2
+- proto: BedsheetNT
+ entities:
+ - uid: 25978
+ components:
+ - type: Transform
+ pos: 14.5,-12.5
+ parent: 2
+ - uid: 25979
+ components:
+ - type: Transform
+ pos: 14.5,-16.5
+ parent: 2
+ - uid: 38542
+ components:
+ - type: Transform
+ pos: 14.5,-13.5
+ parent: 2
+ - uid: 38552
+ components:
+ - type: Transform
+ pos: 14.5,-15.5
+ parent: 2
- proto: BedsheetOrange
entities:
- uid: 1382
@@ -35484,12 +35633,6 @@ entities:
parent: 2
- proto: BoozeDispenser
entities:
- - uid: 1596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-25.5
- parent: 2
- uid: 1597
components:
- type: Transform
@@ -35607,8 +35750,10 @@ entities:
- uid: 1613
components:
- type: Transform
- pos: -23.5,-77.5
- parent: 2
+ parent: 29943
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BoxBodyBag
entities:
- uid: 1614
@@ -35975,6 +36120,12 @@ entities:
1667:
position: 0,0
_rotation: South
+ 1915:
+ position: 1,0
+ _rotation: South
+ 2131:
+ position: 2,0
+ _rotation: South
- type: ContainerContainer
containers:
storagebase: !type:Container
@@ -35982,6 +36133,8 @@ entities:
occludes: True
ents:
- 1667
+ - 1915
+ - 2131
- uid: 1668
components:
- type: Transform
@@ -36317,11 +36470,6 @@ entities:
- type: Transform
pos: 52.444233,25.591513
parent: 2
- - uid: 1729
- components:
- - type: Transform
- pos: 3.5113058,-16.492758
- parent: 2
- uid: 1730
components:
- type: Transform
@@ -36543,6 +36691,11 @@ entities:
- type: Transform
pos: 52.555416,27.410957
parent: 2
+ - uid: 38544
+ components:
+ - type: Transform
+ pos: 31.186247,-26.34189
+ parent: 2
- proto: BoxLightMixed
entities:
- uid: 1776
@@ -36685,6 +36838,50 @@ entities:
rot: 1.5707963267948966 rad
pos: 38.696056,-70.31742
parent: 2
+- proto: BoxMRE
+ entities:
+ - uid: 2442
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 2444
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 15764
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 16182
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 29989
+ components:
+ - type: Transform
+ parent: 26027
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 38586
+ components:
+ - type: Transform
+ parent: 38581
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BoxPDA
entities:
- uid: 1800
@@ -36720,6 +36917,11 @@ entities:
- type: Transform
pos: 60.409832,16.762144
parent: 2
+ - uid: 38564
+ components:
+ - type: Transform
+ pos: 31.186245,-26.56064
+ parent: 2
- proto: BoxSyringe
entities:
- uid: 1804
@@ -36729,11 +36931,10 @@ entities:
parent: 2
- type: Physics
canCollide: False
- - uid: 1805
+ - uid: 33606
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.290853,-43.435093
+ pos: 13.684004,-44.54022
parent: 2
- proto: BoxVial
entities:
@@ -37184,6 +37385,11 @@ entities:
parent: 2
- proto: CableApcExtension
entities:
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: -68.5,49.5
+ parent: 2
- uid: 1876
components:
- type: Transform
@@ -37254,11 +37460,6 @@ entities:
- type: Transform
pos: 66.5,11.5
parent: 2
- - uid: 1890
- components:
- - type: Transform
- pos: -72.5,53.5
- parent: 2
- uid: 1891
components:
- type: Transform
@@ -37379,11 +37580,6 @@ entities:
- type: Transform
pos: 45.5,-61.5
parent: 2
- - uid: 1915
- components:
- - type: Transform
- pos: -64.5,56.5
- parent: 2
- uid: 1916
components:
- type: Transform
@@ -38459,16 +38655,6 @@ entities:
- type: Transform
pos: -18.5,57.5
parent: 2
- - uid: 2131
- components:
- - type: Transform
- pos: -71.5,53.5
- parent: 2
- - uid: 2132
- components:
- - type: Transform
- pos: -68.5,53.5
- parent: 2
- uid: 2133
components:
- type: Transform
@@ -39989,96 +40175,6 @@ entities:
- type: Transform
pos: 7.5,-11.5
parent: 2
- - uid: 2437
- components:
- - type: Transform
- pos: 7.5,-13.5
- parent: 2
- - uid: 2438
- components:
- - type: Transform
- pos: 7.5,-14.5
- parent: 2
- - uid: 2439
- components:
- - type: Transform
- pos: 7.5,-15.5
- parent: 2
- - uid: 2440
- components:
- - type: Transform
- pos: 7.5,-12.5
- parent: 2
- - uid: 2441
- components:
- - type: Transform
- pos: 8.5,-13.5
- parent: 2
- - uid: 2442
- components:
- - type: Transform
- pos: 9.5,-13.5
- parent: 2
- - uid: 2443
- components:
- - type: Transform
- pos: 8.5,-15.5
- parent: 2
- - uid: 2444
- components:
- - type: Transform
- pos: 10.5,-15.5
- parent: 2
- - uid: 2445
- components:
- - type: Transform
- pos: 9.5,-15.5
- parent: 2
- - uid: 2446
- components:
- - type: Transform
- pos: 8.5,-16.5
- parent: 2
- - uid: 2447
- components:
- - type: Transform
- pos: 11.5,-15.5
- parent: 2
- - uid: 2448
- components:
- - type: Transform
- pos: 12.5,-15.5
- parent: 2
- - uid: 2449
- components:
- - type: Transform
- pos: 13.5,-15.5
- parent: 2
- - uid: 2450
- components:
- - type: Transform
- pos: 13.5,-16.5
- parent: 2
- - uid: 2451
- components:
- - type: Transform
- pos: 13.5,-14.5
- parent: 2
- - uid: 2452
- components:
- - type: Transform
- pos: 13.5,-13.5
- parent: 2
- - uid: 2453
- components:
- - type: Transform
- pos: 13.5,-12.5
- parent: 2
- - uid: 2454
- components:
- - type: Transform
- pos: 14.5,-15.5
- parent: 2
- uid: 2455
components:
- type: Transform
@@ -40109,11 +40205,6 @@ entities:
- type: Transform
pos: 9.5,3.5
parent: 2
- - uid: 2461
- components:
- - type: Transform
- pos: -67.5,53.5
- parent: 2
- uid: 2462
components:
- type: Transform
@@ -43584,16 +43675,6 @@ entities:
- type: Transform
pos: -30.5,23.5
parent: 2
- - uid: 3156
- components:
- - type: Transform
- pos: -65.5,56.5
- parent: 2
- - uid: 3157
- components:
- - type: Transform
- pos: -66.5,55.5
- parent: 2
- uid: 3158
components:
- type: Transform
@@ -45254,11 +45335,6 @@ entities:
- type: Transform
pos: 25.5,57.5
parent: 2
- - uid: 3490
- components:
- - type: Transform
- pos: -66.5,56.5
- parent: 2
- uid: 3491
components:
- type: Transform
@@ -59814,66 +59890,6 @@ entities:
- type: Transform
pos: -66.5,45.5
parent: 2
- - uid: 6402
- components:
- - type: Transform
- pos: -66.5,49.5
- parent: 2
- - uid: 6403
- components:
- - type: Transform
- pos: -66.5,48.5
- parent: 2
- - uid: 6404
- components:
- - type: Transform
- pos: -66.5,50.5
- parent: 2
- - uid: 6405
- components:
- - type: Transform
- pos: -66.5,51.5
- parent: 2
- - uid: 6406
- components:
- - type: Transform
- pos: -66.5,52.5
- parent: 2
- - uid: 6407
- components:
- - type: Transform
- pos: -72.5,49.5
- parent: 2
- - uid: 6408
- components:
- - type: Transform
- pos: -71.5,49.5
- parent: 2
- - uid: 6409
- components:
- - type: Transform
- pos: -70.5,49.5
- parent: 2
- - uid: 6410
- components:
- - type: Transform
- pos: -68.5,49.5
- parent: 2
- - uid: 6411
- components:
- - type: Transform
- pos: -67.5,49.5
- parent: 2
- - uid: 6412
- components:
- - type: Transform
- pos: -66.5,49.5
- parent: 2
- - uid: 6413
- components:
- - type: Transform
- pos: -69.5,49.5
- parent: 2
- uid: 6414
components:
- type: Transform
@@ -60279,21 +60295,6 @@ entities:
- type: Transform
pos: -62.5,52.5
parent: 2
- - uid: 6495
- components:
- - type: Transform
- pos: -63.5,52.5
- parent: 2
- - uid: 6496
- components:
- - type: Transform
- pos: -65.5,52.5
- parent: 2
- - uid: 6497
- components:
- - type: Transform
- pos: -64.5,52.5
- parent: 2
- uid: 6498
components:
- type: Transform
@@ -60624,11 +60625,6 @@ entities:
- type: Transform
pos: -60.5,64.5
parent: 2
- - uid: 6564
- components:
- - type: Transform
- pos: -70.5,53.5
- parent: 2
- uid: 6565
components:
- type: Transform
@@ -65454,21 +65450,6 @@ entities:
- type: Transform
pos: -60.5,35.5
parent: 2
- - uid: 7530
- components:
- - type: Transform
- pos: -64.5,48.5
- parent: 2
- - uid: 7531
- components:
- - type: Transform
- pos: -65.5,48.5
- parent: 2
- - uid: 7532
- components:
- - type: Transform
- pos: -63.5,48.5
- parent: 2
- uid: 7533
components:
- type: Transform
@@ -66204,11 +66185,6 @@ entities:
- type: Transform
pos: -59.5,-47.5
parent: 2
- - uid: 7680
- components:
- - type: Transform
- pos: -69.5,53.5
- parent: 2
- uid: 7681
components:
- type: Transform
@@ -66284,21 +66260,11 @@ entities:
- type: Transform
pos: -61.5,54.5
parent: 2
- - uid: 7696
- components:
- - type: Transform
- pos: -66.5,53.5
- parent: 2
- uid: 7697
components:
- type: Transform
pos: -61.5,58.5
parent: 2
- - uid: 7698
- components:
- - type: Transform
- pos: -66.5,54.5
- parent: 2
- uid: 7699
components:
- type: Transform
@@ -66349,11 +66315,6 @@ entities:
- type: Transform
pos: -62.5,56.5
parent: 2
- - uid: 7709
- components:
- - type: Transform
- pos: -63.5,56.5
- parent: 2
- uid: 7710
components:
- type: Transform
@@ -68354,11 +68315,6 @@ entities:
- type: Transform
pos: 2.5,-15.5
parent: 2
- - uid: 8110
- components:
- - type: Transform
- pos: 3.5,-15.5
- parent: 2
- uid: 8111
components:
- type: Transform
@@ -69314,11 +69270,236 @@ entities:
- type: Transform
pos: -68.5,11.5
parent: 2
+ - uid: 13709
+ components:
+ - type: Transform
+ pos: -66.5,48.5
+ parent: 2
+ - uid: 19381
+ components:
+ - type: Transform
+ pos: -69.5,48.5
+ parent: 2
+ - uid: 23439
+ components:
+ - type: Transform
+ pos: -72.5,48.5
+ parent: 2
+ - uid: 23442
+ components:
+ - type: Transform
+ pos: -73.5,54.5
+ parent: 2
+ - uid: 23443
+ components:
+ - type: Transform
+ pos: -70.5,56.5
+ parent: 2
+ - uid: 23603
+ components:
+ - type: Transform
+ pos: -73.5,51.5
+ parent: 2
+ - uid: 23627
+ components:
+ - type: Transform
+ pos: -72.5,56.5
+ parent: 2
+ - uid: 23898
+ components:
+ - type: Transform
+ pos: -73.5,56.5
+ parent: 2
+ - uid: 24258
+ components:
+ - type: Transform
+ pos: -67.5,56.5
+ parent: 2
+ - uid: 24691
+ components:
+ - type: Transform
+ pos: -73.5,49.5
+ parent: 2
+ - uid: 27056
+ components:
+ - type: Transform
+ pos: 7.5,-12.5
+ parent: 2
+ - uid: 28583
+ components:
+ - type: Transform
+ pos: -64.5,56.5
+ parent: 2
+ - uid: 28601
+ components:
+ - type: Transform
+ pos: -63.5,56.5
+ parent: 2
+ - uid: 28832
+ components:
+ - type: Transform
+ pos: -73.5,53.5
+ parent: 2
+ - uid: 28834
+ components:
+ - type: Transform
+ pos: -73.5,52.5
+ parent: 2
+ - uid: 28835
+ components:
+ - type: Transform
+ pos: -73.5,55.5
+ parent: 2
+ - uid: 28837
+ components:
+ - type: Transform
+ pos: -66.5,56.5
+ parent: 2
+ - uid: 28957
+ components:
+ - type: Transform
+ pos: 9.5,-12.5
+ parent: 2
+ - uid: 29123
+ components:
+ - type: Transform
+ pos: 9.5,-13.5
+ parent: 2
+ - uid: 29626
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - uid: 30462
+ components:
+ - type: Transform
+ pos: -73.5,50.5
+ parent: 2
- uid: 30929
components:
- type: Transform
pos: 58.5,14.5
parent: 2
+ - uid: 31285
+ components:
+ - type: Transform
+ pos: -71.5,56.5
+ parent: 2
+ - uid: 31416
+ components:
+ - type: Transform
+ pos: -69.5,56.5
+ parent: 2
+ - uid: 32387
+ components:
+ - type: Transform
+ pos: -68.5,56.5
+ parent: 2
+ - uid: 32438
+ components:
+ - type: Transform
+ pos: 9.5,-15.5
+ parent: 2
+ - uid: 32440
+ components:
+ - type: Transform
+ pos: 9.5,-14.5
+ parent: 2
+ - uid: 32441
+ components:
+ - type: Transform
+ pos: 9.5,-16.5
+ parent: 2
+ - uid: 33550
+ components:
+ - type: Transform
+ pos: -68.5,55.5
+ parent: 2
+ - uid: 33551
+ components:
+ - type: Transform
+ pos: -65.5,56.5
+ parent: 2
+ - uid: 33586
+ components:
+ - type: Transform
+ pos: 5.5,-13.5
+ parent: 2
+ - uid: 33588
+ components:
+ - type: Transform
+ pos: 14.5,-12.5
+ parent: 2
+ - uid: 34723
+ components:
+ - type: Transform
+ pos: 14.5,-11.5
+ parent: 2
+ - uid: 34750
+ components:
+ - type: Transform
+ pos: 13.5,-12.5
+ parent: 2
+ - uid: 35060
+ components:
+ - type: Transform
+ pos: 5.5,-14.5
+ parent: 2
+ - uid: 35278
+ components:
+ - type: Transform
+ pos: -73.5,48.5
+ parent: 2
+ - uid: 37183
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 2
+ - uid: 38191
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+ - uid: 38193
+ components:
+ - type: Transform
+ pos: 13.5,-13.5
+ parent: 2
+ - uid: 38532
+ components:
+ - type: Transform
+ pos: 13.5,-15.5
+ parent: 2
+ - uid: 38533
+ components:
+ - type: Transform
+ pos: 13.5,-16.5
+ parent: 2
+ - uid: 38534
+ components:
+ - type: Transform
+ pos: 13.5,-14.5
+ parent: 2
+ - uid: 38609
+ components:
+ - type: Transform
+ pos: -68.5,48.5
+ parent: 2
+ - uid: 38653
+ components:
+ - type: Transform
+ pos: -71.5,48.5
+ parent: 2
+ - uid: 38654
+ components:
+ - type: Transform
+ pos: -67.5,48.5
+ parent: 2
+ - uid: 38655
+ components:
+ - type: Transform
+ pos: -70.5,48.5
+ parent: 2
- proto: CableApcStack
entities:
- uid: 8302
@@ -71298,11 +71479,6 @@ entities:
- type: Transform
pos: 20.5,5.5
parent: 2
- - uid: 8694
- components:
- - type: Transform
- pos: 29.5,5.5
- parent: 2
- uid: 8695
components:
- type: Transform
@@ -73548,11 +73724,6 @@ entities:
- type: Transform
pos: 9.5,-19.5
parent: 2
- - uid: 9144
- components:
- - type: Transform
- pos: 8.5,-19.5
- parent: 2
- uid: 9145
components:
- type: Transform
@@ -81168,6 +81339,171 @@ entities:
- type: Transform
pos: 78.5,26.5
parent: 2
+ - uid: 38658
+ components:
+ - type: Transform
+ pos: -67.5,48.5
+ parent: 2
+ - uid: 38659
+ components:
+ - type: Transform
+ pos: -64.5,48.5
+ parent: 2
+ - uid: 38660
+ components:
+ - type: Transform
+ pos: -68.5,56.5
+ parent: 2
+ - uid: 38661
+ components:
+ - type: Transform
+ pos: -65.5,48.5
+ parent: 2
+ - uid: 38662
+ components:
+ - type: Transform
+ pos: -68.5,48.5
+ parent: 2
+ - uid: 38663
+ components:
+ - type: Transform
+ pos: -66.5,48.5
+ parent: 2
+ - uid: 38664
+ components:
+ - type: Transform
+ pos: -68.5,49.5
+ parent: 2
+ - uid: 38665
+ components:
+ - type: Transform
+ pos: -69.5,50.5
+ parent: 2
+ - uid: 38667
+ components:
+ - type: Transform
+ pos: -68.5,50.5
+ parent: 2
+ - uid: 38668
+ components:
+ - type: Transform
+ pos: -67.5,50.5
+ parent: 2
+ - uid: 38669
+ components:
+ - type: Transform
+ pos: -69.5,54.5
+ parent: 2
+ - uid: 38670
+ components:
+ - type: Transform
+ pos: -68.5,54.5
+ parent: 2
+ - uid: 38671
+ components:
+ - type: Transform
+ pos: -67.5,54.5
+ parent: 2
+ - uid: 38672
+ components:
+ - type: Transform
+ pos: -68.5,55.5
+ parent: 2
+ - uid: 38673
+ components:
+ - type: Transform
+ pos: -61.5,51.5
+ parent: 2
+ - uid: 38681
+ components:
+ - type: Transform
+ pos: -59.5,50.5
+ parent: 2
+ - uid: 38682
+ components:
+ - type: Transform
+ pos: -60.5,50.5
+ parent: 2
+ - uid: 38683
+ components:
+ - type: Transform
+ pos: -61.5,50.5
+ parent: 2
+ - uid: 38685
+ components:
+ - type: Transform
+ pos: -63.5,48.5
+ parent: 2
+ - uid: 38687
+ components:
+ - type: Transform
+ pos: -67.5,56.5
+ parent: 2
+ - uid: 38688
+ components:
+ - type: Transform
+ pos: -66.5,56.5
+ parent: 2
+ - uid: 38689
+ components:
+ - type: Transform
+ pos: -63.5,52.5
+ parent: 2
+ - uid: 38690
+ components:
+ - type: Transform
+ pos: -65.5,56.5
+ parent: 2
+ - uid: 38691
+ components:
+ - type: Transform
+ pos: -64.5,56.5
+ parent: 2
+ - uid: 38692
+ components:
+ - type: Transform
+ pos: -63.5,56.5
+ parent: 2
+ - uid: 38693
+ components:
+ - type: Transform
+ pos: -63.5,55.5
+ parent: 2
+ - uid: 38694
+ components:
+ - type: Transform
+ pos: -63.5,54.5
+ parent: 2
+ - uid: 38695
+ components:
+ - type: Transform
+ pos: -63.5,51.5
+ parent: 2
+ - uid: 38696
+ components:
+ - type: Transform
+ pos: -63.5,50.5
+ parent: 2
+ - uid: 38697
+ components:
+ - type: Transform
+ pos: -63.5,53.5
+ parent: 2
+ - uid: 38698
+ components:
+ - type: Transform
+ pos: -63.5,49.5
+ parent: 2
+ - uid: 38757
+ components:
+ - type: Transform
+ pos: -61.5,52.5
+ parent: 2
+ - uid: 38758
+ components:
+ - type: Transform
+ pos: -62.5,52.5
+ parent: 2
- proto: CableHVStack
entities:
- uid: 10668
@@ -81202,6 +81538,21 @@ entities:
parent: 2
- proto: CableMV
entities:
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 14.5,-12.5
+ parent: 2
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 13.5,-13.5
+ parent: 2
+ - uid: 2438
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 2
- uid: 10674
components:
- type: Transform
@@ -94402,6 +94753,171 @@ entities:
- type: Transform
pos: 28.5,15.5
parent: 2
+ - uid: 19295
+ components:
+ - type: Transform
+ pos: 7.5,-12.5
+ parent: 2
+ - uid: 20709
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - uid: 27650
+ components:
+ - type: Transform
+ pos: 9.5,-12.5
+ parent: 2
+ - uid: 31487
+ components:
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 2
+ - uid: 32016
+ components:
+ - type: Transform
+ pos: 14.5,-11.5
+ parent: 2
+ - uid: 32018
+ components:
+ - type: Transform
+ pos: 14.5,-13.5
+ parent: 2
+ - uid: 32541
+ components:
+ - type: Transform
+ pos: 11.5,-13.5
+ parent: 2
+ - uid: 38541
+ components:
+ - type: Transform
+ pos: 9.5,-13.5
+ parent: 2
+ - uid: 38546
+ components:
+ - type: Transform
+ pos: 5.5,-13.5
+ parent: 2
+ - uid: 38547
+ components:
+ - type: Transform
+ pos: 9.5,-10.5
+ parent: 2
+ - uid: 38548
+ components:
+ - type: Transform
+ pos: 8.5,-10.5
+ parent: 2
+ - uid: 38556
+ components:
+ - type: Transform
+ pos: 6.5,-13.5
+ parent: 2
+ - uid: 38558
+ components:
+ - type: Transform
+ pos: 10.5,-13.5
+ parent: 2
+ - uid: 38560
+ components:
+ - type: Transform
+ pos: 12.5,-13.5
+ parent: 2
+ - uid: 38561
+ components:
+ - type: Transform
+ pos: 6.5,-12.5
+ parent: 2
+ - uid: 38595
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+ - uid: 38596
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
+ - uid: 38597
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 38598
+ components:
+ - type: Transform
+ pos: 7.5,-16.5
+ parent: 2
+ - uid: 38674
+ components:
+ - type: Transform
+ pos: -59.5,50.5
+ parent: 2
+ - uid: 38702
+ components:
+ - type: Transform
+ pos: -60.5,50.5
+ parent: 2
+ - uid: 38703
+ components:
+ - type: Transform
+ pos: -61.5,50.5
+ parent: 2
+ - uid: 38704
+ components:
+ - type: Transform
+ pos: -62.5,50.5
+ parent: 2
+ - uid: 38705
+ components:
+ - type: Transform
+ pos: -64.5,50.5
+ parent: 2
+ - uid: 38706
+ components:
+ - type: Transform
+ pos: -65.5,50.5
+ parent: 2
+ - uid: 38708
+ components:
+ - type: Transform
+ pos: -64.5,51.5
+ parent: 2
+ - uid: 38709
+ components:
+ - type: Transform
+ pos: -64.5,52.5
+ parent: 2
+ - uid: 38710
+ components:
+ - type: Transform
+ pos: -64.5,53.5
+ parent: 2
+ - uid: 38711
+ components:
+ - type: Transform
+ pos: -64.5,54.5
+ parent: 2
+ - uid: 38712
+ components:
+ - type: Transform
+ pos: -65.5,54.5
+ parent: 2
+ - uid: 38713
+ components:
+ - type: Transform
+ pos: -63.5,52.5
+ parent: 2
+ - uid: 38714
+ components:
+ - type: Transform
+ pos: -62.5,52.5
+ parent: 2
+ - uid: 38715
+ components:
+ - type: Transform
+ pos: -62.5,51.5
+ parent: 2
- proto: CableMVStack
entities:
- uid: 13314
@@ -94662,29 +95178,12 @@ entities:
parent: 2
- proto: CargoPallet
entities:
- - uid: 13354
- components:
- - type: Transform
- pos: 29.5,-21.5
- parent: 2
- uid: 13355
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,13.5
parent: 2
- - uid: 13356
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-46.5
- parent: 2
- - uid: 13357
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,40.5
- parent: 2
- uid: 13358
components:
- type: Transform
@@ -94736,18 +95235,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 27.5,27.5
parent: 2
- - uid: 13367
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-0.5
- parent: 2
- - uid: 13368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,-0.5
- parent: 2
- uid: 13369
components:
- type: Transform
@@ -94810,6 +95297,33 @@ entities:
rot: 1.5707963267948966 rad
pos: 27.5,30.5
parent: 2
+- proto: CargoTelepad
+ entities:
+ - uid: 19294
+ components:
+ - type: Transform
+ pos: 59.5,-0.5
+ parent: 2
+ - uid: 25650
+ components:
+ - type: Transform
+ pos: -31.5,41.5
+ parent: 2
+ - uid: 30600
+ components:
+ - type: Transform
+ pos: -10.5,-39.5
+ parent: 2
+ - uid: 38565
+ components:
+ - type: Transform
+ pos: 30.5,-21.5
+ parent: 2
+ - uid: 38570
+ components:
+ - type: Transform
+ pos: -60.5,17.5
+ parent: 2
- proto: Carpet
entities:
- uid: 13379
@@ -95127,11 +95641,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,-16.5
parent: 2
- - uid: 13438
- components:
- - type: Transform
- pos: 4.5,-15.5
- parent: 2
- uid: 13439
components:
- type: Transform
@@ -95162,12 +95671,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,-16.5
parent: 2
- - uid: 13444
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-16.5
- parent: 2
- uid: 13445
components:
- type: Transform
@@ -95222,12 +95725,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,-15.5
parent: 2
- - uid: 13454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-16.5
- parent: 2
- uid: 13455
components:
- type: Transform
@@ -96650,18 +97147,6 @@ entities:
- type: Transform
pos: -46.5,28.5
parent: 2
- - uid: 13708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,54.5
- parent: 2
- - uid: 13709
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,56.5
- parent: 2
- uid: 13710
components:
- type: Transform
@@ -97420,12 +97905,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -36.5,44.5
parent: 2
- - uid: 13848
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,47.5
- parent: 2
- uid: 13849
components:
- type: Transform
@@ -98935,18 +99414,6 @@ entities:
- type: Transform
pos: -18.5,-83.5
parent: 2
- - uid: 14108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,49.5
- parent: 2
- - uid: 14109
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,51.5
- parent: 2
- uid: 14110
components:
- type: Transform
@@ -99236,18 +99703,6 @@ entities:
- type: Transform
pos: -11.5,-83.5
parent: 2
- - uid: 14167
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,52.5
- parent: 2
- - uid: 14168
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,50.5
- parent: 2
- uid: 14169
components:
- type: Transform
@@ -99314,12 +99769,6 @@ entities:
- type: Transform
pos: -3.5,4.5
parent: 2
- - uid: 14181
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,48.5
- parent: 2
- uid: 14182
components:
- type: Transform
@@ -99465,12 +99914,6 @@ entities:
- type: Transform
pos: -98.5,-8.5
parent: 2
- - uid: 14209
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,52.5
- parent: 2
- uid: 14210
components:
- type: Transform
@@ -99489,12 +99932,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -68.5,35.5
parent: 2
- - uid: 14213
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,50.5
- parent: 2
- uid: 14214
components:
- type: Transform
@@ -99721,12 +100158,6 @@ entities:
- type: Transform
pos: -56.5,42.5
parent: 2
- - uid: 14255
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,48.5
- parent: 2
- uid: 14256
components:
- type: Transform
@@ -99776,12 +100207,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 22.5,24.5
parent: 2
- - uid: 14265
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,47.5
- parent: 2
- uid: 14266
components:
- type: Transform
@@ -100441,11 +100866,6 @@ entities:
- type: Transform
pos: -3.5,7.5
parent: 2
- - uid: 14389
- components:
- - type: Transform
- pos: -68.5,54.5
- parent: 2
- uid: 14390
components:
- type: Transform
@@ -101483,12 +101903,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -36.5,-57.5
parent: 2
- - uid: 14580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,51.5
- parent: 2
- uid: 14581
components:
- type: Transform
@@ -101674,11 +102088,6 @@ entities:
- type: Transform
pos: -51.5,-74.5
parent: 2
- - uid: 14615
- components:
- - type: Transform
- pos: 2.5,10.5
- parent: 2
- uid: 14616
components:
- type: Transform
@@ -101744,11 +102153,6 @@ entities:
- type: Transform
pos: 26.5,99.5
parent: 2
- - uid: 14629
- components:
- - type: Transform
- pos: -3.5,10.5
- parent: 2
- uid: 14630
components:
- type: Transform
@@ -101942,11 +102346,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -74.5,46.5
parent: 2
- - uid: 14665
- components:
- - type: Transform
- pos: -68.5,53.5
- parent: 2
- uid: 14666
components:
- type: Transform
@@ -102689,12 +103088,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -74.5,44.5
parent: 2
- - uid: 14804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,49.5
- parent: 2
- uid: 14805
components:
- type: Transform
@@ -103347,12 +103740,6 @@ entities:
- type: Transform
pos: 15.5,-82.5
parent: 2
- - uid: 14928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,55.5
- parent: 2
- uid: 14929
components:
- type: Transform
@@ -103373,53 +103760,6 @@ entities:
- type: Transform
pos: 14.5,-83.5
parent: 2
- - uid: 14933
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,53.5
- parent: 2
- - uid: 14934
- components:
- - type: Transform
- pos: -68.5,55.5
- parent: 2
- - uid: 14935
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,56.5
- parent: 2
- - uid: 14936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,56.5
- parent: 2
- - uid: 14937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,56.5
- parent: 2
- - uid: 14938
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,56.5
- parent: 2
- - uid: 14939
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,56.5
- parent: 2
- - uid: 14940
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,56.5
- parent: 2
- uid: 14941
components:
- type: Transform
@@ -103648,6 +103988,48 @@ entities:
rot: 3.141592653589793 rad
pos: -67.5,12.5
parent: 2
+ - uid: 23440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,49.5
+ parent: 2
+ - uid: 24648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,55.5
+ parent: 2
+ - uid: 28605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,55.5
+ parent: 2
+ - uid: 28836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,49.5
+ parent: 2
+ - uid: 30456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,55.5
+ parent: 2
+ - uid: 31284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,49.5
+ parent: 2
+ - uid: 38606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,52.5
+ parent: 2
- proto: Chair
entities:
- uid: 14979
@@ -105031,6 +105413,16 @@ entities:
rot: 3.141592653589793 rad
pos: 68.5,1.5
parent: 2
+ - uid: 38545
+ components:
+ - type: Transform
+ pos: 30.5,20.5
+ parent: 2
+ - uid: 38562
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 2
- proto: ChairBarber
entities:
- uid: 15219
@@ -105143,6 +105535,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -40.5,-10.5
parent: 2
+ - uid: 38602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 2
+ - uid: 38603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-14.5
+ parent: 2
- proto: ChairGreyscale
entities:
- uid: 15237
@@ -105853,6 +106257,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.5,24.5
parent: 2
+ - uid: 38599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-12.5
+ parent: 2
- proto: ChairOfficeGrey
entities:
- uid: 15359
@@ -106535,12 +106945,6 @@ entities:
- type: Transform
pos: 25.701082,-24.420784
parent: 2
- - uid: 15468
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.634602,-43.325718
- parent: 2
- uid: 15469
components:
- type: Transform
@@ -106810,19 +107214,19 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 2451
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 15509
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -0.5121892,-14.504744
parent: 2
- - uid: 15510
- components:
- - type: Transform
- pos: -2.4250343,12.791277
- parent: 2
- - type: Physics
- canCollide: False
- uid: 15511
components:
- type: Transform
@@ -106841,6 +107245,19 @@ entities:
rot: 1.5707963267948966 rad
pos: 72.409805,-2.4211302
parent: 2
+ - uid: 15765
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 25789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.3786514,13.658774
+ parent: 2
- proto: CigarGoldSpent
entities:
- uid: 15520
@@ -106877,15 +107294,19 @@ entities:
- uid: 15525
components:
- type: Transform
- pos: -23.5,-77.5
- parent: 2
+ parent: 29943
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: CigPackMixedMedical
entities:
- uid: 15526
components:
- type: Transform
- pos: -23.5,-77.5
- parent: 2
+ parent: 29943
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: CircuitImprinter
entities:
- uid: 15527
@@ -106967,6 +107388,16 @@ entities:
- 0
- 0
- 0
+ - uid: 18483
+ components:
+ - type: Transform
+ pos: 58.5,-0.5
+ parent: 2
+ - uid: 26230
+ components:
+ - type: Transform
+ pos: 71.5,4.5
+ parent: 2
- proto: ClosetChefFilled
entities:
- uid: 15537
@@ -108567,8 +108998,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 1.9456291
- - 7.319271
+ - 1.9016405
+ - 7.1537914
- 0
- 0
- 0
@@ -109569,6 +110000,21 @@ entities:
- type: Transform
pos: -73.5,11.5
parent: 2
+ - uid: 38566
+ components:
+ - type: Transform
+ pos: -11.5,-30.5
+ parent: 2
+ - uid: 38676
+ components:
+ - type: Transform
+ pos: -61.5,52.5
+ parent: 2
+ - uid: 38677
+ components:
+ - type: Transform
+ pos: -61.5,53.5
+ parent: 2
- proto: ClosetSteelBase
entities:
- uid: 15697
@@ -110163,57 +110609,6 @@ entities:
inSlot: back
- type: Physics
canCollide: False
-- proto: ClothingBackpackSyndie
- entities:
- - uid: 15763
- components:
- - type: Transform
- pos: 11.273349,-63.4136
- parent: 2
- - type: GroupExamine
- group:
- - hoverMessage: ""
- contextText: verb-examine-group-other
- icon: /Textures/Interface/examine-star.png
- components:
- - Armor
- - ClothingSpeedModifier
- entries:
- - message: >-
- Обеспечивает следующую защиту:
-
- - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color].
- priority: 0
- component: Armor
- title: null
- - type: Storage
- storedItems:
- 15767:
- position: 0,0
- _rotation: South
- 15768:
- position: 2,0
- _rotation: South
- 15766:
- position: 4,0
- _rotation: South
- 15765:
- position: 5,0
- _rotation: East
- 15764:
- position: 7,0
- _rotation: North
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15767
- - 15768
- - 15766
- - 15765
- - 15764
- proto: ClothingBeltJanitorFilled
entities:
- uid: 15769
@@ -110510,6 +110905,13 @@ entities:
parent: 2
- proto: ClothingHandsGlovesColorBlack
entities:
+ - uid: 2437
+ components:
+ - type: Transform
+ parent: 1689
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 15807
components:
- type: Transform
@@ -110703,12 +111105,6 @@ entities:
parent: 2
- proto: ClothingHandsGlovesCombat
entities:
- - uid: 15764
- components:
- - type: Transform
- parent: 15763
- - type: Physics
- canCollide: False
- uid: 15849
components:
- type: Transform
@@ -111256,14 +111652,6 @@ entities:
- type: Transform
pos: 4.0855947,-52.240982
parent: 2
-- proto: ClothingHeadHatSyndie
- entities:
- - uid: 15765
- components:
- - type: Transform
- parent: 15763
- - type: Physics
- canCollide: False
- proto: ClothingHeadHatTacticalMaidHeadband
entities:
- uid: 15869
@@ -111474,6 +111862,22 @@ entities:
- type: Transform
pos: 20.595087,-14.402559
parent: 2
+- proto: ClothingHeadsetBlueShield
+ entities:
+ - uid: 2132
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 2461
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ClothingMaskBandBlack
entities:
- uid: 15967
@@ -111661,6 +112065,22 @@ entities:
- type: Transform
pos: -62.433693,8.033986
parent: 2
+- proto: ClothingMaskGasBlueShield
+ entities:
+ - uid: 2443
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14629
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ClothingMaskGasMerc
entities:
- uid: 15997
@@ -111668,14 +112088,6 @@ entities:
- type: Transform
pos: -34.50193,-2.333043
parent: 2
-- proto: ClothingMaskGasSyndicate
- entities:
- - uid: 15766
- components:
- - type: Transform
- parent: 15763
- - type: Physics
- canCollide: False
- proto: ClothingMaskJackal
entities:
- uid: 15998
@@ -111706,12 +112118,6 @@ entities:
- type: Transform
pos: 6.4998994,-42.29039
parent: 2
- - uid: 16000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.401516,-44.661903
- parent: 2
- uid: 16001
components:
- type: Transform
@@ -111901,16 +112307,6 @@ entities:
- type: Transform
pos: 14.568494,-58.43179
parent: 2
- - uid: 16030
- components:
- - type: Transform
- pos: 32.043938,-26.529804
- parent: 2
- - uid: 16031
- components:
- - type: Transform
- pos: 31.84081,-26.48293
- parent: 2
- uid: 16032
components:
- type: Transform
@@ -112116,6 +112512,11 @@ entities:
- type: Transform
pos: -55.5,-44.5
parent: 2
+ - uid: 29859
+ components:
+ - type: Transform
+ pos: -55.49862,-48.5602
+ parent: 2
- proto: ClothingOuterHardsuitBasic
entities:
- uid: 16053
@@ -112150,6 +112551,18 @@ entities:
priority: 0
component: Armor
title: null
+- proto: ClothingOuterHardsuitBlueShield
+ entities:
+ - uid: 38617
+ components:
+ - type: Transform
+ pos: 6.3669276,-15.445562
+ parent: 2
+ - uid: 38618
+ components:
+ - type: Transform
+ pos: 6.7263026,-15.445563
+ parent: 2
- proto: ClothingOuterHardsuitPilot
entities:
- uid: 16054
@@ -112379,14 +112792,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.3939614,-38.3964
parent: 2
-- proto: ClothingShoesBootsCombatFilled
- entities:
- - uid: 15767
- components:
- - type: Transform
- parent: 15763
- - type: Physics
- canCollide: False
- proto: ClothingShoesBootsCowboyBlackFilled
entities:
- uid: 16074
@@ -112733,36 +113138,11 @@ entities:
- type: Transform
pos: -46.6148,-48.380947
parent: 2
- - uid: 16101
- components:
- - type: Transform
- pos: 57.529083,-29.573092
- parent: 2
- uid: 16102
components:
- type: Transform
pos: -45.355076,-48.42951
parent: 2
- - uid: 16103
- components:
- - type: Transform
- pos: 57.52931,-29.469646
- parent: 2
- - uid: 16104
- components:
- - type: Transform
- pos: 57.54471,-29.963717
- parent: 2
- - uid: 16105
- components:
- - type: Transform
- pos: 57.529305,-29.797771
- parent: 2
- - uid: 16106
- components:
- - type: Transform
- pos: 57.54493,-30.125896
- parent: 2
- proto: ClothingUniformJumpsuitLoungewear
entities:
- uid: 16107
@@ -112803,14 +113183,6 @@ entities:
- type: Transform
pos: 20.438835,-16.49631
parent: 2
-- proto: ClothingUniformJumpsuitRecruitSyndie
- entities:
- - uid: 15768
- components:
- - type: Transform
- parent: 15763
- - type: Physics
- canCollide: False
- proto: ClothingUniformJumpsuitRepairmanSyndie
entities:
- uid: 16113
@@ -113119,11 +113491,6 @@ entities:
- type: Transform
pos: -10.5,10.5
parent: 2
- - uid: 16163
- components:
- - type: Transform
- pos: 14.5,11.5
- parent: 2
- uid: 16164
components:
- type: Transform
@@ -113136,12 +113503,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -8.5,9.5
parent: 2
- - uid: 16166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,9.5
- parent: 2
- uid: 16167
components:
- type: Transform
@@ -113189,17 +113550,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 8.5,1.5
parent: 2
- - uid: 16175
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,9.5
- parent: 2
- - uid: 16176
- components:
- - type: Transform
- pos: 13.5,11.5
- parent: 2
- uid: 16177
components:
- type: Transform
@@ -113242,13 +113592,6 @@ entities:
parent: 2
- type: Physics
canCollide: False
-- proto: ComputeCargoSalaryConsole
- entities:
- - uid: 16182
- components:
- - type: Transform
- pos: 4.5,15.5
- parent: 2
- proto: ComputerAlert
entities:
- uid: 16183
@@ -113268,11 +113611,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -65.5,6.5
parent: 2
- - uid: 16186
- components:
- - type: Transform
- pos: -59.5,20.5
- parent: 2
- uid: 16187
components:
- type: Transform
@@ -113408,11 +113746,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -13.5,0.5
parent: 2
- - uid: 16207
- components:
- - type: Transform
- pos: -3.5,17.5
- parent: 2
- uid: 16208
components:
- type: Transform
@@ -113436,12 +113769,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.5,35.5
parent: 2
- - uid: 16212
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,42.5
- parent: 2
- uid: 16213
components:
- type: Transform
@@ -113450,6 +113777,17 @@ entities:
parent: 2
- proto: ComputerCargoOrdersEngineering
entities:
+ - uid: 581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,17.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38570:
+ - - OrderSender
+ - OrderReceiver
- uid: 16214
components:
- type: Transform
@@ -113458,11 +113796,10 @@ entities:
parent: 2
- proto: ComputerCargoOrdersMedical
entities:
- - uid: 16215
+ - uid: 23282
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-22.5
+ pos: 29.5,-21.5
parent: 2
- proto: ComputerCargoOrdersScience
entities:
@@ -113472,6 +113809,17 @@ entities:
rot: 3.141592653589793 rad
pos: -7.5,-35.5
parent: 2
+ - uid: 38543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-38.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30600:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerCargoOrdersSecurity
entities:
- uid: 16217
@@ -113480,14 +113828,24 @@ entities:
rot: 3.141592653589793 rad
pos: 60.5,-0.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19294:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerCargoOrdersService
entities:
- - uid: 16218
+ - uid: 25646
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,40.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25650:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerComms
entities:
- uid: 16219
@@ -113566,14 +113924,13 @@ entities:
rot: 1.5707963267948966 rad
pos: 53.5,15.5
parent: 2
-- proto: ComputerCriminalRecords
- entities:
- - uid: 16232
+ - uid: 38589
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,8.5
+ pos: 9.5,-11.5
parent: 2
+- proto: ComputerCriminalRecords
+ entities:
- uid: 16233
components:
- type: Transform
@@ -113665,6 +114022,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 53.5,14.5
parent: 2
+ - uid: 38601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-16.5
+ parent: 2
- proto: ComputerFrame
entities:
- uid: 16249
@@ -113686,6 +114049,12 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,-1.5
parent: 2
+ - uid: 38549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,12.5
+ parent: 2
- proto: ComputerId
entities:
- uid: 16252
@@ -113733,12 +114102,10 @@ entities:
- type: Transform
pos: 1.5,61.5
parent: 2
-- proto: ComputerMedicalSaleConsole
- entities:
- - uid: 16259
+ - uid: 25192
components:
- type: Transform
- pos: 30.5,-21.5
+ pos: -3.5,17.5
parent: 2
- proto: ComputerPalletConsole
entities:
@@ -113909,22 +114276,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.5,51.5
parent: 2
-- proto: ComputerScienceSaleConsole
- entities:
- - uid: 16287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-47.5
- parent: 2
-- proto: ComputerServiceSaleConsole
- entities:
- - uid: 16288
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,41.5
- parent: 2
- proto: ComputerSolarControl
entities:
- uid: 16289
@@ -114081,6 +114432,17 @@ entities:
rot: 3.141592653589793 rad
pos: 27.5,16.5
parent: 2
+ - uid: 25649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,8.5
+ parent: 2
+ - uid: 38590
+ components:
+ - type: Transform
+ pos: 10.5,-11.5
+ parent: 2
- proto: ComputerSurveillanceWirelessCameraMonitor
entities:
- uid: 16315
@@ -114115,13 +114477,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,6.5
parent: 2
-- proto: ComputeStationBankConsole
- entities:
- - uid: 16320
- components:
- - type: Transform
- pos: -5.5,15.5
- parent: 2
- proto: ContainmentFieldGenerator
entities:
- uid: 16321
@@ -114498,6 +114853,17 @@ entities:
fixtures: {}
- proto: CorpSofaLeft
entities:
+ - uid: 13356
+ components:
+ - type: Transform
+ pos: 13.5,11.5
+ parent: 2
+ - uid: 16166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,9.5
+ parent: 2
- uid: 16376
components:
- type: Transform
@@ -114587,6 +114953,17 @@ entities:
parent: 2
- proto: CorpSofaRight
entities:
+ - uid: 14940
+ components:
+ - type: Transform
+ pos: 14.5,11.5
+ parent: 2
+ - uid: 16163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,9.5
+ parent: 2
- uid: 16391
components:
- type: Transform
@@ -114733,6 +115110,28 @@ entities:
- 0
- 0
- 0
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 16832
+ components:
+ - type: Transform
+ pos: 42.5,25.5
+ parent: 2
+ - uid: 19255
+ components:
+ - type: Transform
+ pos: 40.5,25.5
+ parent: 2
+ - uid: 26001
+ components:
+ - type: Transform
+ pos: 40.5,26.5
+ parent: 2
+ - uid: 26065
+ components:
+ - type: Transform
+ pos: 42.5,26.5
+ parent: 2
- proto: CrateEmergencyInternals
entities:
- uid: 16411
@@ -116141,8 +116540,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 9.368679
- - 35.24408
+ - 2.4954846
+ - 9.387775
- 0
- 0
- 0
@@ -116408,6 +116807,18 @@ entities:
parent: 2
- proto: CurtainsBlueOpen
entities:
+ - uid: 2440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-14.5
+ parent: 2
+ - uid: 13357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-14.5
+ parent: 2
- uid: 16553
components:
- type: Transform
@@ -116418,6 +116829,12 @@ entities:
- type: Transform
pos: 14.5,1.5
parent: 2
+ - uid: 38540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-14.5
+ parent: 2
- proto: CurtainsCyanOpen
entities:
- uid: 16555
@@ -116496,6 +116913,13 @@ entities:
rot: 1.5707963267948966 rad
pos: -57.5,-48.5
parent: 2
+- proto: CurtainsPurple
+ entities:
+ - uid: 26026
+ components:
+ - type: Transform
+ pos: -73.5,-33.5
+ parent: 2
- proto: CurtainsPurpleOpen
entities:
- uid: 16567
@@ -116679,6 +117103,11 @@ entities:
- type: Transform
pos: 4.5,-0.5
parent: 2
+ - uid: 38649
+ components:
+ - type: Transform
+ pos: 9.5,-14.5
+ parent: 2
- proto: DefaultStationBeaconBotany
entities:
- uid: 16590
@@ -116878,17 +117307,6 @@ entities:
text: Кухня
- type: WarpPoint
location: Сервис - Кухня
-- proto: DefaultStationBeaconLawOffice
- entities:
- - uid: 16609
- components:
- - type: Transform
- pos: 35.5,0.5
- parent: 2
- - type: NavMapBeacon
- text: АВД
- - type: WarpPoint
- location: Офис агента внутренних дел
- proto: DefaultStationBeaconLibrary
entities:
- uid: 16610
@@ -117106,6 +117524,43 @@ entities:
- type: Transform
pos: 55.5,14.5
parent: 2
+- proto: Defibrillator
+ entities:
+ - uid: 2453
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 9144
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 15510
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 16031
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 38585
+ components:
+ - type: Transform
+ parent: 38581
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: DefibrillatorCabinetFilled
entities:
- uid: 16633
@@ -117158,6 +117613,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,-0.5
parent: 2
+ - uid: 27765
+ components:
+ - type: Transform
+ pos: 31.5,-36.5
+ parent: 2
+ - uid: 38686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,-42.5
+ parent: 2
- proto: DefibrillatorCompact
entities:
- uid: 16642
@@ -117165,6 +117631,13 @@ entities:
- type: Transform
pos: 41.755234,33.5848
parent: 2
+ - uid: 29990
+ components:
+ - type: Transform
+ parent: 26027
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: DeployableBarrier
entities:
- uid: 16643
@@ -118142,6 +118615,12 @@ entities:
- type: Transform
pos: 24.5,27.5
parent: 2
+ - uid: 18259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-16.5
+ parent: 2
- proto: DisposalJunction
entities:
- uid: 16808
@@ -118286,12 +118765,6 @@ entities:
rot: 3.141592653589793 rad
pos: 17.5,-34.5
parent: 2
- - uid: 16832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,5.5
- parent: 2
- uid: 16833
components:
- type: Transform
@@ -118531,6 +119004,12 @@ entities:
rot: 3.141592653589793 rad
pos: 17.5,-8.5
parent: 2
+ - uid: 27144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-19.5
+ parent: 2
- proto: DisposalMachineFrame
entities:
- uid: 16873
@@ -118540,6 +119019,12 @@ entities:
parent: 2
- proto: DisposalPipe
entities:
+ - uid: 16176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,5.5
+ parent: 2
- uid: 16874
components:
- type: Transform
@@ -121425,12 +121910,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,-19.5
parent: 2
- - uid: 17370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-19.5
- parent: 2
- uid: 17371
components:
- type: Transform
@@ -124351,6 +124830,16 @@ entities:
- type: Transform
pos: 56.5,33.5
parent: 2
+ - uid: 38640
+ components:
+ - type: Transform
+ pos: 8.5,-17.5
+ parent: 2
+ - uid: 38652
+ components:
+ - type: Transform
+ pos: 8.5,-18.5
+ parent: 2
- proto: DisposalTrunk
entities:
- uid: 17876
@@ -124834,6 +125323,12 @@ entities:
rot: 3.141592653589793 rad
pos: 37.5,8.5
parent: 2
+ - uid: 38641
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-16.5
+ parent: 2
- proto: DisposalUnit
entities:
- uid: 17959
@@ -125221,6 +125716,11 @@ entities:
- type: Transform
pos: 3.5,-2.5
parent: 2
+ - uid: 38642
+ components:
+ - type: Transform
+ pos: 9.5,-16.5
+ parent: 2
- proto: DisposalYJunction
entities:
- uid: 18036
@@ -126211,6 +126711,16 @@ entities:
- type: Transform
pos: 51.32679,-0.19623518
parent: 2
+ - uid: 38604
+ components:
+ - type: Transform
+ pos: 8.749415,-13.500588
+ parent: 2
+ - uid: 38605
+ components:
+ - type: Transform
+ pos: 8.780666,-14.469338
+ parent: 2
- proto: DrinkLongIslandIcedTeaGlass
entities:
- uid: 18170
@@ -126507,6 +127017,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 29764
+ components:
+ - type: Transform
+ parent: 25645
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: DrinkWhiskeyGlass
entities:
- uid: 1697
@@ -126544,6 +127061,20 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 29655
+ components:
+ - type: Transform
+ parent: 25645
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 29761
+ components:
+ - type: Transform
+ parent: 25645
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: DrinkWineBottleFull
entities:
- uid: 16433
@@ -126707,16 +127238,6 @@ entities:
- type: Transform
pos: 8.5,45.5
parent: 2
- - uid: 18258
- components:
- - type: Transform
- pos: 13.5,-12.5
- parent: 2
- - uid: 18259
- components:
- - type: Transform
- pos: 7.5,-11.5
- parent: 2
- uid: 18260
components:
- type: Transform
@@ -126797,15 +127318,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 18271
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-16.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 18272
components:
- type: Transform
@@ -128354,6 +128866,36 @@ entities:
- type: Transform
pos: 4.5,2.5
parent: 2
+ - uid: 38646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-12.5
+ parent: 2
+ - uid: 38647
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-11.5
+ parent: 2
+ - uid: 38648
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 38650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-16.5
+ parent: 2
+ - uid: 38651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-15.5
+ parent: 2
- proto: EmergencyMedipen
entities:
- uid: 18467
@@ -128448,14 +128990,28 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,-11.5
parent: 2
-- proto: EncryptionKeyCommand
- entities:
- - uid: 18483
+ - uid: 38656
components:
- type: Transform
- parent: 18482
- - type: Physics
- canCollide: False
+ pos: -64.5,54.5
+ parent: 2
+ - uid: 38699
+ components:
+ - type: Transform
+ pos: -65.5,54.5
+ parent: 2
+ - uid: 38700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,50.5
+ parent: 2
+ - uid: 38701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -64.5,50.5
+ parent: 2
- proto: ExosuitFabricator
entities:
- uid: 18484
@@ -128871,6 +129427,11 @@ entities:
- type: Transform
pos: 61.5,21.5
parent: 2
+ - uid: 38574
+ components:
+ - type: Transform
+ pos: 11.5,-12.5
+ parent: 2
- proto: FaxMachineBase
entities:
- uid: 18565
@@ -129910,6 +130471,16 @@ entities:
- 18709
- 745
- 744
+ - uid: 38573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-13.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 29959
+ - 38569
- proto: FireAxeCabinetFilled
entities:
- uid: 18682
@@ -133090,6 +133661,54 @@ entities:
- type: DeviceNetwork
deviceLists:
- 108
+ - uid: 29959
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31484
+ - 38573
+ - 33020
+ - uid: 38569
+ components:
+ - type: Transform
+ pos: 11.5,-13.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31484
+ - 38573
+ - 33020
+ - uid: 38637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33020
+ - uid: 38638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-17.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33020
+ - uid: 38639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-13.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31700
+ - 33020
- proto: Fireplace
entities:
- uid: 19056
@@ -133260,10 +133879,40 @@ entities:
- uid: 19082
components:
- type: Transform
- pos: -23.5,-77.5
- parent: 2
+ parent: 29943
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: FlippoLighterSunriseBlue
entities:
+ - uid: 2445
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 2448
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 15767
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 16212
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 19083
components:
- type: MetaData
@@ -133271,6 +133920,13 @@ entities:
- type: Transform
pos: 4.748982,0.611444
parent: 2
+ - uid: 38587
+ components:
+ - type: Transform
+ parent: 38581
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: FlippoLighterSunriseNt
entities:
- uid: 1698
@@ -134237,6 +134893,11 @@ entities:
- type: Transform
pos: -0.4595958,0.68667734
parent: 2
+ - uid: 38607
+ components:
+ - type: Transform
+ pos: 8.405666,-13.281837
+ parent: 2
- proto: FoodBoxNugget
entities:
- uid: 19248
@@ -134284,13 +134945,6 @@ entities:
- type: Transform
pos: 10.669702,-79.19171
parent: 2
-- proto: FoodCakeSuppermatter
- entities:
- - uid: 19255
- components:
- - type: Transform
- pos: -55.518852,48.499203
- parent: 2
- proto: FoodCakeSuppermatterSlice
entities:
- uid: 19256
@@ -134410,6 +135064,18 @@ entities:
- type: Transform
pos: -29.51509,36.765392
parent: 2
+- proto: FoodDonutBluePumpkin
+ entities:
+ - uid: 38608
+ components:
+ - type: Transform
+ pos: 8.280666,-13.609962
+ parent: 2
+ - uid: 38611
+ components:
+ - type: Transform
+ pos: 10.546294,-11.552148
+ parent: 2
- proto: FoodDonutCaramel
entities:
- uid: 19268
@@ -134660,18 +135326,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: FoodPieAmanita
- entities:
- - uid: 19294
- components:
- - type: Transform
- pos: -5.982664,32.549408
- parent: 2
- - uid: 19295
- components:
- - type: Transform
- pos: -6.123289,32.565033
- parent: 2
- proto: FoodPieApple
entities:
- uid: 19296
@@ -134916,13 +135570,6 @@ entities:
rot: 3.141592653589793 rad
pos: 8.5,-36.5
parent: 2
-- proto: FultonBeacon
- entities:
- - uid: 19331
- components:
- - type: Transform
- pos: 13.480562,-15.485751
- parent: 2
- proto: GameMasterCircuitBoard
entities:
- uid: 968
@@ -135070,18 +135717,6 @@ entities:
parent: 2
- proto: GasOutletInjector
entities:
- - uid: 19352
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,52.5
- parent: 2
- - uid: 19353
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,48.5
- parent: 2
- uid: 19354
components:
- type: Transform
@@ -135125,6 +135760,46 @@ entities:
parent: 2
- proto: GasPassiveVent
entities:
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: -61.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 3490
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,53.5
+ parent: 2
+ - uid: 6406
+ components:
+ - type: Transform
+ pos: -67.5,51.5
+ parent: 2
+ - uid: 6407
+ components:
+ - type: Transform
+ pos: -68.5,51.5
+ parent: 2
+ - uid: 7709
+ components:
+ - type: Transform
+ pos: -69.5,51.5
+ parent: 2
+ - uid: 8110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,53.5
+ parent: 2
+ - uid: 13708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,53.5
+ parent: 2
- uid: 19361
components:
- type: Transform
@@ -135161,12 +135836,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -70.5,46.5
parent: 2
- - uid: 19367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,50.5
- parent: 2
- uid: 19368
components:
- type: Transform
@@ -135252,22 +135921,14 @@ entities:
rot: 3.141592653589793 rad
pos: -117.5,15.5
parent: 2
- - uid: 19381
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,54.5
- parent: 2
- - uid: 19382
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- proto: GasPipeBend
entities:
+ - uid: 1124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,50.5
+ parent: 2
- uid: 19383
components:
- type: Transform
@@ -135402,13 +136063,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 19402
- components:
- - type: Transform
- pos: -61.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 19403
components:
- type: Transform
@@ -137605,6 +138259,46 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 38125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -69.5,54.5
+ parent: 2
+ - uid: 38127
+ components:
+ - type: Transform
+ pos: -67.5,54.5
+ parent: 2
+ - uid: 38143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,50.5
+ parent: 2
+ - uid: 38631
+ components:
+ - type: Transform
+ pos: 9.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 38634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 38635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- proto: GasPipeFourway
entities:
- uid: 19690
@@ -137796,8 +138490,54 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 27222
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 33619
+ components:
+ - type: Transform
+ pos: -68.5,54.5
+ parent: 2
+ - uid: 33652
+ components:
+ - type: Transform
+ pos: -68.5,50.5
+ parent: 2
+ - uid: 38624
+ components:
+ - type: Transform
+ pos: 8.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+- proto: GasPipeHalf
+ entities:
+ - uid: 22150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,55.5
+ parent: 2
+ - uid: 23361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,49.5
+ parent: 2
- proto: GasPipeStraight
entities:
+ - uid: 1086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 19717
components:
- type: Transform
@@ -139076,8 +139816,8 @@ entities:
- uid: 19884
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -75.5,55.5
parent: 2
- uid: 19885
components:
@@ -139087,14 +139827,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 19886
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 19887
components:
- type: Transform
@@ -139217,49 +139949,27 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 19903
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 19904
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,50.5
- parent: 2
- - uid: 19905
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,58.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 19906
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,50.5
- parent: 2
- - uid: 19907
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,56.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 19908
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -68.5,48.5
- parent: 2
- - uid: 19909
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,48.5
+ pos: -75.5,49.5
parent: 2
- uid: 19910
components:
@@ -145192,13 +145902,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 20709
- components:
- - type: Transform
- pos: 8.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- uid: 20710
components:
- type: Transform
@@ -156326,14 +157029,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -35.5,-38.5
parent: 2
- - uid: 22148
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 22149
components:
- type: Transform
@@ -156341,32 +157036,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 22150
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,52.5
- parent: 2
- uid: 22151
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,52.5
+ pos: -68.5,55.5
parent: 2
- uid: 22152
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,52.5
+ pos: -68.5,49.5
parent: 2
- - uid: 22153
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 22154
components:
- type: Transform
@@ -156785,18 +157464,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0000FFFF'
- - uid: 22208
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,54.5
- parent: 2
- - uid: 22209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,54.5
- parent: 2
- uid: 22210
components:
- type: Transform
@@ -156900,14 +157567,6 @@ entities:
- type: Transform
pos: -71.5,-24.5
parent: 2
- - uid: 22227
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 22228
components:
- type: Transform
@@ -158761,6 +159420,77 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 38625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 38626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 38627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 38628
+ components:
+ - type: Transform
+ pos: 8.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 38629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 38630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 38632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 38633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 38636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- proto: GasPipeTJunction
entities:
- uid: 22469
@@ -161447,18 +162177,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,46.5
parent: 2
- - uid: 22827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,50.5
- parent: 2
- - uid: 22828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,48.5
- parent: 2
- uid: 22829
components:
- type: Transform
@@ -161471,12 +162189,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,33.5
parent: 2
- - uid: 22831
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,54.5
- parent: 2
- uid: 22832
components:
- type: Transform
@@ -161542,12 +162254,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0000FFFF'
- - uid: 22841
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,52.5
- parent: 2
- proto: GasThermoMachineFreezer
entities:
- uid: 22842
@@ -161646,16 +162352,27 @@ entities:
open: False
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 22857
+ - uid: 34620
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,57.5
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
- proto: GasVentPump
entities:
+ - uid: 580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 31484
- uid: 22858
components:
- type: Transform
@@ -162254,13 +162971,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0000FFFF'
- - uid: 22920
- components:
- - type: Transform
- pos: 8.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0000FFFF'
- uid: 22921
components:
- type: Transform
@@ -163408,8 +164118,40 @@ entities:
- 53
- type: AtmosPipeColor
color: '#0000FFFF'
+ - uid: 27146
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 33020
+ - uid: 27470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 31700
- proto: GasVentScrubber
entities:
+ - uid: 13368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 31700
- uid: 23040
components:
- type: Transform
@@ -163876,14 +164618,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 23090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 23091
components:
- type: Transform
@@ -164970,6 +165704,28 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 25980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 31484
+ - uid: 38623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 33020
- proto: GasVolumePump
entities:
- uid: 23207
@@ -165211,6 +165967,18 @@ entities:
- type: Transform
pos: 10.5,3.5
parent: 2
+- proto: Gohei
+ entities:
+ - uid: 29654
+ components:
+ - type: MetaData
+ desc: После пряника, всегда идёт кнут!
+ name: кнут
+ - type: Transform
+ parent: 25645
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: GoldenPlunger
entities:
- uid: 23246
@@ -165296,6 +166064,124 @@ entities:
parent: 2
- proto: Grille
entities:
+ - uid: 1082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,50.5
+ parent: 2
+ - uid: 1083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,52.5
+ parent: 2
+ - uid: 1084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,54.5
+ parent: 2
+ - uid: 1088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,46.5
+ parent: 2
+ - uid: 1357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,47.5
+ parent: 2
+ - uid: 1358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,50.5
+ parent: 2
+ - uid: 1359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,51.5
+ parent: 2
+ - uid: 1360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,52.5
+ parent: 2
+ - uid: 1361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,43.5
+ parent: 2
+ - uid: 1362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,42.5
+ parent: 2
+ - uid: 1363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,53.5
+ parent: 2
+ - uid: 6405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,59.5
+ parent: 2
+ - uid: 14167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,51.5
+ parent: 2
+ - uid: 14168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,49.5
+ parent: 2
+ - uid: 14938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,54.5
+ parent: 2
+ - uid: 16000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,53.5
+ parent: 2
+ - uid: 16175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,58.5
+ parent: 2
+ - uid: 16259
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 17370
+ components:
+ - type: Transform
+ pos: 7.5,-16.5
+ parent: 2
+ - uid: 19903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,55.5
+ parent: 2
- uid: 23251
components:
- type: Transform
@@ -165463,12 +166349,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -4.5,-12.5
parent: 2
- - uid: 23282
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-17.5
- parent: 2
- uid: 23283
components:
- type: Transform
@@ -165926,18 +166806,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 52.5,15.5
parent: 2
- - uid: 23361
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,48.5
- parent: 2
- - uid: 23362
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,49.5
- parent: 2
- uid: 23363
components:
- type: Transform
@@ -166028,12 +166896,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -69.5,32.5
parent: 2
- - uid: 23378
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,50.5
- parent: 2
- uid: 23379
components:
- type: Transform
@@ -166201,11 +167063,6 @@ entities:
- type: Transform
pos: 7.5,-83.5
parent: 2
- - uid: 23408
- components:
- - type: Transform
- pos: 12.5,-64.5
- parent: 2
- uid: 23409
components:
- type: Transform
@@ -166322,16 +167179,6 @@ entities:
- type: Transform
pos: 23.5,62.5
parent: 2
- - uid: 23429
- components:
- - type: Transform
- pos: -66.5,57.5
- parent: 2
- - uid: 23430
- components:
- - type: Transform
- pos: -69.5,54.5
- parent: 2
- uid: 23431
components:
- type: Transform
@@ -166379,31 +167226,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -67.5,-46.5
parent: 2
- - uid: 23439
- components:
- - type: Transform
- pos: -67.5,54.5
- parent: 2
- - uid: 23440
- components:
- - type: Transform
- pos: -69.5,53.5
- parent: 2
- - uid: 23441
- components:
- - type: Transform
- pos: -76.5,58.5
- parent: 2
- - uid: 23442
- components:
- - type: Transform
- pos: -67.5,53.5
- parent: 2
- - uid: 23443
- components:
- - type: Transform
- pos: -69.5,52.5
- parent: 2
- uid: 23444
components:
- type: Transform
@@ -167255,11 +168077,6 @@ entities:
- type: Transform
pos: -47.5,26.5
parent: 2
- - uid: 23603
- components:
- - type: Transform
- pos: -67.5,52.5
- parent: 2
- uid: 23604
components:
- type: Transform
@@ -167337,11 +168154,6 @@ entities:
- type: Transform
pos: 74.5,-40.5
parent: 2
- - uid: 23619
- components:
- - type: Transform
- pos: -77.5,50.5
- parent: 2
- uid: 23620
components:
- type: Transform
@@ -167378,11 +168190,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -102.5,-21.5
parent: 2
- - uid: 23627
- components:
- - type: Transform
- pos: -77.5,51.5
- parent: 2
- uid: 23628
components:
- type: Transform
@@ -168415,16 +169222,6 @@ entities:
- type: Transform
pos: 19.5,-37.5
parent: 2
- - uid: 23827
- components:
- - type: Transform
- pos: 11.5,-12.5
- parent: 2
- - uid: 23828
- components:
- - type: Transform
- pos: 11.5,-16.5
- parent: 2
- uid: 23829
components:
- type: Transform
@@ -168777,11 +169574,6 @@ entities:
- type: Transform
pos: -40.5,-49.5
parent: 2
- - uid: 23898
- components:
- - type: Transform
- pos: -67.5,48.5
- parent: 2
- uid: 23899
components:
- type: Transform
@@ -170621,11 +171413,6 @@ entities:
- type: Transform
pos: -60.5,-83.5
parent: 2
- - uid: 24258
- components:
- - type: Transform
- pos: -75.5,47.5
- parent: 2
- uid: 24259
components:
- type: Transform
@@ -170706,11 +171493,6 @@ entities:
- type: Transform
pos: -75.5,-41.5
parent: 2
- - uid: 24275
- components:
- - type: Transform
- pos: -76.5,54.5
- parent: 2
- uid: 24276
components:
- type: Transform
@@ -170767,11 +171549,6 @@ entities:
- type: Transform
pos: -50.5,-95.5
parent: 2
- - uid: 24287
- components:
- - type: Transform
- pos: -75.5,52.5
- parent: 2
- uid: 24288
components:
- type: Transform
@@ -171010,11 +171787,6 @@ entities:
- type: Transform
pos: -14.5,-21.5
parent: 2
- - uid: 24335
- components:
- - type: Transform
- pos: 11.5,-14.5
- parent: 2
- uid: 24336
components:
- type: Transform
@@ -171093,11 +171865,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -52.5,-57.5
parent: 2
- - uid: 24351
- components:
- - type: Transform
- pos: -67.5,50.5
- parent: 2
- uid: 24352
components:
- type: Transform
@@ -171713,11 +172480,6 @@ entities:
- type: Transform
pos: 72.5,-52.5
parent: 2
- - uid: 24471
- components:
- - type: Transform
- pos: -77.5,52.5
- parent: 2
- uid: 24472
components:
- type: Transform
@@ -171863,11 +172625,6 @@ entities:
- type: Transform
pos: -49.5,26.5
parent: 2
- - uid: 24500
- components:
- - type: Transform
- pos: -67.5,49.5
- parent: 2
- uid: 24501
components:
- type: Transform
@@ -172226,11 +172983,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -79.5,-19.5
parent: 2
- - uid: 24570
- components:
- - type: Transform
- pos: -75.5,49.5
- parent: 2
- uid: 24571
components:
- type: Transform
@@ -172628,11 +173380,6 @@ entities:
- type: Transform
pos: -59.5,-51.5
parent: 2
- - uid: 24648
- components:
- - type: Transform
- pos: -76.5,60.5
- parent: 2
- uid: 24649
components:
- type: Transform
@@ -172649,11 +173396,6 @@ entities:
- type: Transform
pos: -43.5,34.5
parent: 2
- - uid: 24652
- components:
- - type: Transform
- pos: -77.5,48.5
- parent: 2
- uid: 24653
components:
- type: Transform
@@ -172845,11 +173587,6 @@ entities:
- type: Transform
pos: -46.5,-92.5
parent: 2
- - uid: 24691
- components:
- - type: Transform
- pos: -76.5,59.5
- parent: 2
- uid: 24692
components:
- type: Transform
@@ -173220,11 +173957,6 @@ entities:
- type: Transform
pos: -45.5,-70.5
parent: 2
- - uid: 24765
- components:
- - type: Transform
- pos: -76.5,55.5
- parent: 2
- uid: 24766
components:
- type: Transform
@@ -173843,16 +174575,6 @@ entities:
- type: Transform
pos: -43.5,-89.5
parent: 2
- - uid: 24887
- components:
- - type: Transform
- pos: -75.5,50.5
- parent: 2
- - uid: 24888
- components:
- - type: Transform
- pos: -75.5,51.5
- parent: 2
- uid: 24889
components:
- type: Transform
@@ -175473,21 +176195,6 @@ entities:
- type: Transform
pos: 16.5,82.5
parent: 2
- - uid: 25191
- components:
- - type: Transform
- pos: 15.5,-15.5
- parent: 2
- - uid: 25192
- components:
- - type: Transform
- pos: 15.5,-14.5
- parent: 2
- - uid: 25193
- components:
- - type: Transform
- pos: 15.5,-16.5
- parent: 2
- uid: 25194
components:
- type: Transform
@@ -175793,12 +176500,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 1.5,-13.5
parent: 2
- - uid: 25248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-13.5
- parent: 2
- uid: 25249
components:
- type: Transform
@@ -177182,6 +177883,356 @@ entities:
- type: Transform
pos: 48.5,44.5
parent: 2
+ - uid: 26066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,57.5
+ parent: 2
+ - uid: 26067
+ components:
+ - type: Transform
+ pos: -66.5,53.5
+ parent: 2
+ - uid: 29950
+ components:
+ - type: Transform
+ pos: 12.5,-64.5
+ parent: 2
+ - uid: 29966
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
+ - uid: 31488
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-10.5
+ parent: 2
+ - uid: 32423
+ components:
+ - type: Transform
+ pos: -66.5,51.5
+ parent: 2
+ - uid: 33653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,50.5
+ parent: 2
+ - uid: 38554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-10.5
+ parent: 2
+ - uid: 38707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,44.5
+ parent: 2
+ - uid: 38716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,44.5
+ parent: 2
+ - uid: 38717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,44.5
+ parent: 2
+ - uid: 38718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,46.5
+ parent: 2
+ - uid: 38719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,46.5
+ parent: 2
+ - uid: 38720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,47.5
+ parent: 2
+ - uid: 38721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,48.5
+ parent: 2
+ - uid: 38722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,46.5
+ parent: 2
+ - uid: 38723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -82.5,44.5
+ parent: 2
+ - uid: 38724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,44.5
+ parent: 2
+ - uid: 38725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,45.5
+ parent: 2
+ - uid: 38726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,47.5
+ parent: 2
+ - uid: 38727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,48.5
+ parent: 2
+ - uid: 38728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,49.5
+ parent: 2
+ - uid: 38729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,50.5
+ parent: 2
+ - uid: 38730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,51.5
+ parent: 2
+ - uid: 38731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,51.5
+ parent: 2
+ - uid: 38732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,52.5
+ parent: 2
+ - uid: 38733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,53.5
+ parent: 2
+ - uid: 38734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,50.5
+ parent: 2
+ - uid: 38735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,53.5
+ parent: 2
+ - uid: 38736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,54.5
+ parent: 2
+ - uid: 38737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,55.5
+ parent: 2
+ - uid: 38738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,57.5
+ parent: 2
+ - uid: 38739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,56.5
+ parent: 2
+ - uid: 38740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,55.5
+ parent: 2
+ - uid: 38741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,56.5
+ parent: 2
+ - uid: 38742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,57.5
+ parent: 2
+ - uid: 38743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,58.5
+ parent: 2
+ - uid: 38744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,58.5
+ parent: 2
+ - uid: 38745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,58.5
+ parent: 2
+ - uid: 38746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,60.5
+ parent: 2
+ - uid: 38747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -82.5,60.5
+ parent: 2
+ - uid: 38748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,60.5
+ parent: 2
+ - uid: 38749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,60.5
+ parent: 2
+ - uid: 38750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,60.5
+ parent: 2
+ - uid: 38751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,60.5
+ parent: 2
+ - uid: 38752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,58.5
+ parent: 2
+ - uid: 38753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,58.5
+ parent: 2
+ - uid: 38754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,58.5
+ parent: 2
+ - uid: 38755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,56.5
+ parent: 2
+ - uid: 38756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,56.5
+ parent: 2
+ - uid: 38759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,44.5
+ parent: 2
+ - uid: 38762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,59.5
+ parent: 2
+ - uid: 38763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,62.5
+ parent: 2
+ - uid: 38764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,61.5
+ parent: 2
+ - uid: 38765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,62.5
+ parent: 2
+ - uid: 38766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,62.5
+ parent: 2
+ - uid: 38767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,62.5
+ parent: 2
+ - uid: 38768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,62.5
+ parent: 2
+ - uid: 38769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,63.5
+ parent: 2
- proto: GrilleBroken
entities:
- uid: 25502
@@ -177960,6 +179011,101 @@ entities:
- type: Transform
pos: 36.5,31.5
parent: 2
+ - uid: 38770
+ components:
+ - type: Transform
+ pos: -79.5,62.5
+ parent: 2
+ - uid: 38771
+ components:
+ - type: Transform
+ pos: -83.5,62.5
+ parent: 2
+ - uid: 38772
+ components:
+ - type: Transform
+ pos: -85.5,60.5
+ parent: 2
+ - uid: 38773
+ components:
+ - type: Transform
+ pos: -85.5,56.5
+ parent: 2
+ - uid: 38774
+ components:
+ - type: Transform
+ pos: -85.5,55.5
+ parent: 2
+ - uid: 38775
+ components:
+ - type: Transform
+ pos: -85.5,54.5
+ parent: 2
+ - uid: 38776
+ components:
+ - type: Transform
+ pos: -85.5,49.5
+ parent: 2
+ - uid: 38777
+ components:
+ - type: Transform
+ pos: -85.5,48.5
+ parent: 2
+ - uid: 38778
+ components:
+ - type: Transform
+ pos: -85.5,45.5
+ parent: 2
+ - uid: 38779
+ components:
+ - type: Transform
+ pos: -85.5,41.5
+ parent: 2
+ - uid: 38780
+ components:
+ - type: Transform
+ pos: -84.5,41.5
+ parent: 2
+ - uid: 38781
+ components:
+ - type: Transform
+ pos: -83.5,41.5
+ parent: 2
+ - uid: 38782
+ components:
+ - type: Transform
+ pos: -82.5,41.5
+ parent: 2
+ - uid: 38783
+ components:
+ - type: Transform
+ pos: -81.5,41.5
+ parent: 2
+ - uid: 38784
+ components:
+ - type: Transform
+ pos: -79.5,41.5
+ parent: 2
+ - uid: 38785
+ components:
+ - type: Transform
+ pos: -78.5,41.5
+ parent: 2
+ - uid: 38786
+ components:
+ - type: Transform
+ pos: -77.5,41.5
+ parent: 2
+ - uid: 38787
+ components:
+ - type: Transform
+ pos: -80.5,41.5
+ parent: 2
+ - uid: 38788
+ components:
+ - type: Transform
+ pos: -81.5,44.5
+ parent: 2
- proto: GunSafe
entities:
- uid: 15512
@@ -178008,17 +179154,72 @@ entities:
- type: Transform
pos: 79.5,-3.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
- - 25646
- - 25647
- - 25648
- - 25649
- - 25650
+ - 29764
+ - 29761
+ - 29655
+ - 29654
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 29943
+ components:
+ - type: Transform
+ pos: -23.5,-77.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.8978155
+ - 7.139402
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 15526
+ - 1613
+ - 37884
+ - 19082
+ - 15525
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -178725,6 +179926,84 @@ entities:
parent: 2
- proto: HeatExchanger
entities:
+ - uid: 1080
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,50.5
+ parent: 2
+ - uid: 1125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,49.5
+ parent: 2
+ - uid: 1126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,49.5
+ parent: 2
+ - uid: 1890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,49.5
+ parent: 2
+ - uid: 6408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,53.5
+ parent: 2
+ - uid: 6409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,53.5
+ parent: 2
+ - uid: 6411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,54.5
+ parent: 2
+ - uid: 7530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,54.5
+ parent: 2
+ - uid: 14255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,52.5
+ parent: 2
+ - uid: 14265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,51.5
+ parent: 2
+ - uid: 14389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,50.5
+ parent: 2
+ - uid: 14928
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,51.5
+ parent: 2
+ - uid: 14934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,52.5
+ parent: 2
- uid: 25712
components:
- type: Transform
@@ -178745,6 +180024,78 @@ entities:
- type: Transform
pos: -49.5,57.5
parent: 2
+- proto: HeatExchangerBend
+ entities:
+ - uid: 6410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,55.5
+ parent: 2
+ - uid: 6413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -79.5,50.5
+ parent: 2
+ - uid: 6495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,54.5
+ parent: 2
+ - uid: 6496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,49.5
+ parent: 2
+ - uid: 6497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,52.5
+ parent: 2
+ - uid: 6564
+ components:
+ - type: Transform
+ pos: -76.5,51.5
+ parent: 2
+ - uid: 7531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,53.5
+ parent: 2
+ - uid: 19402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,50.5
+ parent: 2
+ - uid: 19909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,51.5
+ parent: 2
+ - uid: 22148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -79.5,54.5
+ parent: 2
+ - uid: 22857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -79.5,52.5
+ parent: 2
+ - uid: 31642
+ components:
+ - type: Transform
+ pos: -76.5,53.5
+ parent: 2
- proto: Hemostat
entities:
- uid: 25716
@@ -179239,12 +180590,6 @@ entities:
- type: Transform
pos: 63.5,27.5
parent: 2
- - uid: 25789
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-78.5
- parent: 2
- uid: 25790
components:
- type: Transform
@@ -179570,6 +180915,23 @@ entities:
- type: Transform
pos: 56.5,-47.5
parent: 2
+- proto: HyposprayMedical
+ entities:
+ - uid: 24335
+ components:
+ - type: Transform
+ pos: 31.842497,-26.37314
+ parent: 2
+ - uid: 25191
+ components:
+ - type: Transform
+ pos: 31.826872,-26.24814
+ parent: 2
+ - uid: 25977
+ components:
+ - type: Transform
+ pos: 31.842495,-26.576265
+ parent: 2
- proto: IDComputerCircuitboard
entities:
- uid: 25846
@@ -180296,9 +181658,24 @@ entities:
- uid: 25968
components:
- type: Transform
- rot: 3.2845950045157224E-05 rad
- pos: 7.4999056,7.534997
+ pos: 7.5134788,7.617428
parent: 2
+ - type: HandheldLight
+ toggleActionEntity: 27365
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27365
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
- uid: 25969
components:
- type: Transform
@@ -180344,38 +181721,6 @@ entities:
- type: Transform
pos: 28.511566,24.332579
parent: 2
-- proto: LandMineExplosive
- entities:
- - uid: 25977
- components:
- - type: Transform
- pos: 13.469967,-66.37249
- parent: 2
- - type: CMExplosionEffect
- - uid: 25978
- components:
- - type: Transform
- pos: 13.391842,-64.544365
- parent: 2
- - type: CMExplosionEffect
- - uid: 25979
- components:
- - type: Transform
- pos: 14.501217,-63.51312
- parent: 2
- - type: CMExplosionEffect
- - uid: 25980
- components:
- - type: Transform
- pos: 10.548091,-67.52875
- parent: 2
- - type: CMExplosionEffect
- - uid: 25981
- components:
- - type: Transform
- pos: 12.501216,-69.356865
- parent: 2
- - type: CMExplosionEffect
- proto: LandMineModular
entities:
- uid: 25982
@@ -180693,11 +182038,6 @@ entities:
- type: PointLight
energy: 1.5
radius: 3
- - uid: 26001
- components:
- - type: Transform
- pos: 3.5,19.5
- parent: 2
- uid: 26002
components:
- type: Transform
@@ -181095,13 +182435,6 @@ entities:
1444:
- - Pressed
- Toggle
-- proto: Lockbox
- entities:
- - uid: 26026
- components:
- - type: Transform
- pos: 4.561008,-15.409416
- parent: 2
- proto: LockerAtmosphericsFilled
entities:
- uid: 15831
@@ -181216,9 +182549,191 @@ entities:
entities:
- uid: 26027
components:
+ - type: MetaData
+ desc: Стандартное хранилище корпарации!
+ name: шкаф Лейтенанта "Синий щит"
- type: Transform
pos: 5.5,2.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 29972
+ - 29974
+ - 29989
+ - 29990
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: LockerBlueShieldOfficerFilled
+ entities:
+ - uid: 2441
+ components:
+ - type: MetaData
+ desc: Стандартное хранилище корпарации!
+ name: шкаф Офицера "Синий Щит"
+ - type: Transform
+ pos: 12.5,-16.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 2132
+ - 2449
+ - 9144
+ - 2454
+ - 2453
+ - 2452
+ - 2451
+ - 2442
+ - 2443
+ - 2444
+ - 2445
+ - 2446
+ - 2447
+ - 2448
+ - 2450
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 13454
+ components:
+ - type: MetaData
+ desc: Стандартное хранилище корпарации!
+ name: шкаф Офицера "Синий Щит"
+ - type: Transform
+ pos: 12.5,-12.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 2461
+ - 15767
+ - 16212
+ - 16207
+ - 16186
+ - 16182
+ - 16031
+ - 16030
+ - 14629
+ - 15510
+ - 15763
+ - 15764
+ - 15765
+ - 15766
+ - 15768
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 38581
+ components:
+ - type: MetaData
+ desc: Стандартное хранилище корпарации!
+ name: шкаф Офицера "Синий Щит"
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 38583
+ - 38588
+ - 38587
+ - 38586
+ - 38585
+ - 38584
+ - 38582
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: LockerBooze
entities:
- uid: 1812
@@ -181265,7 +182780,7 @@ entities:
- uid: 18231
components:
- type: MetaData
- desc: Здесь Офицер "Синий Щит" хранит алкоголь, и не только.
+ desc: Здесь Лейтенант "Синий Щит" хранит алкоголь, и не только.
name: шкафчик со спиртным
- type: Transform
pos: 5.5,-1.5
@@ -181422,8 +182937,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 1.8968438
- - 7.1357465
+ - 1.8977377
+ - 7.139109
- 0
- 0
- 0
@@ -181440,10 +182955,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 1405
+ - 1354
- 1404
- - 1407
- 1406
+ - 1407
+ - 1405
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -181781,26 +183297,6 @@ entities:
- 0
- 0
- 0
- - uid: 26065
- components:
- - type: Transform
- pos: 40.5,26.5
- parent: 2
- - uid: 26066
- components:
- - type: Transform
- pos: 42.5,26.5
- parent: 2
- - uid: 26067
- components:
- - type: Transform
- pos: 42.5,25.5
- parent: 2
- - uid: 26068
- components:
- - type: Transform
- pos: 40.5,25.5
- parent: 2
- uid: 26069
components:
- type: Transform
@@ -182035,11 +183531,6 @@ entities:
- type: Transform
pos: 32.5,-28.5
parent: 2
- - uid: 26086
- components:
- - type: Transform
- pos: 22.5,-24.5
- parent: 2
- uid: 26087
components:
- type: Transform
@@ -182135,6 +183626,11 @@ entities:
ent: null
- proto: LockerParamedicFilled
entities:
+ - uid: 3156
+ components:
+ - type: Transform
+ pos: 22.5,-24.5
+ parent: 2
- uid: 26094
components:
- type: Transform
@@ -182158,6 +183654,16 @@ entities:
- 0
- 0
- 0
+ - uid: 33613
+ components:
+ - type: Transform
+ pos: 12.5,-43.5
+ parent: 2
+ - uid: 33618
+ components:
+ - type: Transform
+ pos: 12.5,-44.5
+ parent: 2
- proto: LockerPilotFilledHardsuit
entities:
- uid: 26095
@@ -182204,6 +183710,8 @@ entities:
entities:
- uid: 1689
components:
+ - type: MetaData
+ name: шкаф Представителя
- type: Transform
pos: -6.5,2.5
parent: 2
@@ -182213,8 +183721,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -182231,8 +183739,9 @@ entities:
showEnts: False
occludes: True
ents:
+ - 1691
+ - 2437
- 1690
- - 1695
- 1693
- 1697
- 1699
@@ -182240,7 +183749,7 @@ entities:
- 1698
- 1696
- 1694
- - 1691
+ - 1695
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -182811,10 +184320,10 @@ entities:
parent: 2
- proto: MachineMaterialSilo
entities:
- - uid: 26167
+ - uid: 1200
components:
- type: Transform
- pos: -10.5,-39.5
+ pos: -9.5,-32.5
parent: 2
- proto: MagazineBoxAntiMateriel
entities:
@@ -182850,36 +184359,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: MagazineDeagle
- entities:
- - uid: 25646
- components:
- - type: Transform
- parent: 25645
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 25647
- components:
- - type: Transform
- parent: 25645
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 25648
- components:
- - type: Transform
- parent: 25645
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 25649
- components:
- - type: Transform
- parent: 25645
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: MagicDiceBag
entities:
- uid: 26168
@@ -183462,7 +184941,7 @@ entities:
parent: 2
- proto: MedicalTechFab
entities:
- - uid: 26230
+ - uid: 30252
components:
- type: Transform
pos: 28.5,-23.5
@@ -183544,6 +185023,11 @@ entities:
canCollide: False
- proto: MedkitFilled
entities:
+ - uid: 19367
+ components:
+ - type: Transform
+ pos: 13.20173,-44.46626
+ parent: 2
- uid: 26244
components:
- type: Transform
@@ -183571,12 +185055,6 @@ entities:
- type: Transform
pos: 81.5,-20.5
parent: 2
- - uid: 26249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.354641,-44.521282
- parent: 2
- uid: 26250
components:
- type: Transform
@@ -183599,6 +185077,11 @@ entities:
- type: Transform
pos: 29.401342,49.336514
parent: 2
+ - uid: 38684
+ components:
+ - type: Transform
+ pos: 13.230879,-44.196465
+ parent: 2
- proto: MedkitOxygenFilled
entities:
- uid: 26254
@@ -183663,6 +185146,16 @@ entities:
- type: Transform
pos: 61.612957,16.574644
parent: 2
+ - uid: 38678
+ components:
+ - type: Transform
+ pos: -61.630802,54.518456
+ parent: 2
+ - uid: 38679
+ components:
+ - type: Transform
+ pos: -61.396427,54.518456
+ parent: 2
- proto: MedkitToxinFilled
entities:
- uid: 26266
@@ -184610,6 +186103,12 @@ entities:
parent: 2
- proto: NTFlag
entities:
+ - uid: 5
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-11.5
+ parent: 2
- uid: 26380
components:
- type: Transform
@@ -184896,6 +186395,13 @@ entities:
- type: Transform
pos: 14.5,-2.5
parent: 2
+- proto: PaintVend
+ entities:
+ - uid: 38550
+ components:
+ - type: Transform
+ pos: 34.5,-6.5
+ parent: 2
- proto: PaladinCircuitBoard
entities:
- uid: 971
@@ -184963,66 +186469,6 @@ entities:
containers:
solution@food: !type:ContainerSlot
ent: 4
- - uid: 5
- mapInit: true
- paused: true
- components:
- - type: Transform
- pos: 8.47083,-13.953401
- parent: 2
- - type: Paper
- stampState: paper_stamp-ce
- stampedBy:
- - stampedColor: '#C69B17FF'
- stampedName: Главный Инженер "Сметана"
- content: >-
- В связи с сокращением бюджета на станцию. Мы решили более не поставлять на станции оборудования для Гета, а также продвинутую аптечку. Которую постоянно кто-то забирал.
-
-
- Всё будет на месте, как только наша корпарация наладит связь с гейтом.
- - type: SolutionContainerManager
- solutions: null
- containers:
- - food
- - type: EmitSoundOnCollide
- nextSound: -6727.2932727
- - type: Fixtures
- fixtures:
- fix1:
- shape: !type:PolygonShape
- radius: 0.01
- vertices:
- - -0.25,-0.25
- - 0.25,-0.25
- - 0.25,0.25
- - -0.25,0.25
- mask:
- - Impassable
- - HighImpassable
- layer: []
- density: 20
- hard: True
- restitution: 0.3
- friction: 0.2
- flammable:
- shape: !type:PhysShapeCircle
- radius: 0.35
- position: 0,0
- mask:
- - HighImpassable
- - LowImpassable
- - BulletImpassable
- - InteractImpassable
- - Opaque
- layer: []
- density: 1
- hard: False
- restitution: 0
- friction: 0.4
- - type: ContainerContainer
- containers:
- solution@food: !type:ContainerSlot
- ent: 6
- uid: 7
mapInit: true
paused: true
@@ -185152,6 +186598,88 @@ entities:
parent: 1731
- type: Physics
canCollide: False
+ - uid: 1915
+ components:
+ - type: Transform
+ parent: 1666
+ - type: Paper
+ content: >
+ [color=#1b487e]███░███░░░░██░░░░[/color]
+
+ [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head]
+
+ [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head]
+
+ [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold]
+
+ [color=#1b487e]░░░░██░░░████░███[/color]
+
+ =============================================
+ ПРИКАЗ КАПИТАНА
+ =============================================
+
+ Время от начала смены и дата:
+
+ Составитель документа:
+
+ Должность составителя:
+
+ Капитан
+
+
+ Я, (Фамилия Имя), в должности капитана, приказываю всему экипажу станции Station XX-000: Немедленно прекратить употребление алкоголя.
+
+ Все лица, замеченные за употреблением алкоголя, будут наказаны по закону.
+
+
+ Приказ встумает в силу с момента его штампования.
+
+ =============================================
+ [italic]Место для печатей[/italic]
+ - type: Physics
+ canCollide: False
+ - uid: 2131
+ components:
+ - type: Transform
+ parent: 1666
+ - type: Paper
+ content: >
+ [color=#800080]░░░░░░█████░░░███[/color]
+
+ [color=#800080]░░░░██░░░░░░░░░██[/color] [head=3]Бланк документа[/head]
+
+ [color=#800080]░░░░██░░░░░██░░░█[/color] [head=3]Qillu[/head]
+
+ [color=#800080]█░░░░░░░░░░██░░░░[/color] [bold]Station XX-000 КОМ[/bold]
+
+ [color=#800080]██░░░░█████░░░░░░[/color]
+
+ [color=#800080]███░░░░░░░░██░░░░[/color]
+
+ =============================================
+ ПРИКАЗ КАПИТАНА
+ =============================================
+
+ Время от начала смены и дата:
+
+ Составитель документа:
+
+ Должность составителя:
+
+ Капитан
+
+
+ Я, (Фамилия Имя), в должности капитана, приказываю всему экипажу станции Station XX-000: Немедленно прекратить употребление алкоголя.
+
+ Все лица, замеченные за употреблением алкоголя, будут наказаны по закону.
+
+
+ Приказ встумает в силу с момента его штампования.
+
+ =============================================
+ [italic]Место для печатей[/italic]
+ - type: Physics
+ canCollide: False
- uid: 26426
components:
- type: Transform
@@ -186638,12 +188166,6 @@ entities:
- type: Transform
pos: 8.410156,-43.40559
parent: 2
- - uid: 26664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.785163,-44.64352
- parent: 2
- uid: 26665
components:
- type: Transform
@@ -186729,6 +188251,23 @@ entities:
parent: 2
- proto: PlasmaReinforcedWindowDirectional
entities:
+ - uid: 22827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,55.5
+ parent: 2
+ - uid: 22841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,55.5
+ parent: 2
+ - uid: 23429
+ components:
+ - type: Transform
+ pos: -67.5,49.5
+ parent: 2
- uid: 26678
components:
- type: Transform
@@ -186741,6 +188280,11 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,-48.5
parent: 2
+ - uid: 28602
+ components:
+ - type: Transform
+ pos: -69.5,49.5
+ parent: 2
- proto: PlasmaTankFilled
entities:
- uid: 26680
@@ -186749,6 +188293,19 @@ entities:
pos: -54.62513,-9.336228
parent: 2
- type: CMExplosionEffect
+- proto: PlasmaWindoorSecureEngineeringLocked
+ entities:
+ - uid: 32385
+ components:
+ - type: Transform
+ pos: -68.5,49.5
+ parent: 2
+ - uid: 38657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,55.5
+ parent: 2
- proto: PlasticFlapsAirtightClear
entities:
- uid: 26681
@@ -186998,6 +188555,13 @@ entities:
- type: Transform
pos: 28.562729,105.623215
parent: 2
+- proto: PlushieTuxedoCat
+ entities:
+ - uid: 29949
+ components:
+ - type: Transform
+ pos: 11.521584,-63.46747
+ parent: 2
- proto: PokerCardBoxFilled
entities:
- uid: 26719
@@ -187177,13 +188741,6 @@ entities:
- type: Transform
pos: -10.5,25.5
parent: 2
-- proto: PosterContrabandCommunistState
- entities:
- - uid: 26748
- components:
- - type: Transform
- pos: 12.5,4.5
- parent: 2
- proto: PosterContrabandCybersun600
entities:
- uid: 26749
@@ -189208,10 +190765,10 @@ entities:
- type: CMExplosionEffect
- proto: PowerCellMedium
entities:
- - uid: 27056
+ - uid: 38559
components:
- type: Transform
- pos: -10.462577,-38.319637
+ pos: -10.413048,-37.37963
parent: 2
- type: CMExplosionEffect
- proto: PowerCellRecharger
@@ -189620,6 +191177,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,-45.5
parent: 2
+ - uid: 38568
+ components:
+ - type: Transform
+ pos: -57.5,20.5
+ parent: 2
- proto: PowerCellSmall
entities:
- uid: 27081
@@ -189679,6 +191241,18 @@ entities:
parent: 2
- proto: Poweredlight
entities:
+ - uid: 23430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,53.5
+ parent: 2
+ - uid: 24351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -65.5,49.5
+ parent: 2
- uid: 27089
components:
- type: Transform
@@ -189995,22 +191569,11 @@ entities:
rot: 3.141592653589793 rad
pos: -11.5,-9.5
parent: 2
- - uid: 27144
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-9.5
- parent: 2
- uid: 27145
components:
- type: Transform
pos: -14.5,-11.5
parent: 2
- - uid: 27146
- components:
- - type: Transform
- pos: 9.5,-11.5
- parent: 2
- uid: 27147
components:
- type: Transform
@@ -190101,12 +191664,6 @@ entities:
- type: Transform
pos: -57.5,30.5
parent: 2
- - uid: 27163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,57.5
- parent: 2
- uid: 27164
components:
- type: Transform
@@ -190520,12 +192077,6 @@ entities:
- type: Transform
pos: -69.5,2.5
parent: 2
- - uid: 27222
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-14.5
- parent: 2
- uid: 27223
components:
- type: Transform
@@ -191586,14 +193137,6 @@ entities:
parent: 2
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 27365
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,51.5
- parent: 2
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 27366
components:
- type: Transform
@@ -192325,14 +193868,6 @@ entities:
parent: 2
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 27470
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-13.5
- parent: 2
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 27471
components:
- type: Transform
@@ -193009,12 +194544,6 @@ entities:
parent: 2
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 27567
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-13.5
- parent: 2
- uid: 27568
components:
- type: Transform
@@ -193602,12 +195131,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 8.5,-31.5
parent: 2
- - uid: 27650
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-16.5
- parent: 2
- uid: 27651
components:
- type: Transform
@@ -193919,6 +195442,52 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,11.5
parent: 2
+ - uid: 28604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -65.5,55.5
+ parent: 2
+ - uid: 29956
+ components:
+ - type: Transform
+ pos: 13.5,-12.5
+ parent: 2
+ - uid: 38144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,51.5
+ parent: 2
+ - uid: 38567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-16.5
+ parent: 2
+ - uid: 38620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-16.5
+ parent: 2
+ - uid: 38621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-16.5
+ parent: 2
+ - uid: 38622
+ components:
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 2
+ - uid: 38643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-9.5
+ parent: 2
- proto: PoweredlightBlue
entities:
- uid: 27705
@@ -194164,22 +195733,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -1.5,47.5
parent: 2
- - uid: 27744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,47.5
- parent: 2
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27745
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,51.5
- parent: 2
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 27746
components:
- type: Transform
@@ -194295,12 +195848,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -72.5,37.5
parent: 2
- - uid: 27765
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,49.5
- parent: 2
- uid: 27766
components:
- type: Transform
@@ -194366,12 +195913,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -44.5,24.5
parent: 2
- - uid: 27777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,53.5
- parent: 2
- uid: 27778
components:
- type: Transform
@@ -194441,12 +195982,6 @@ entities:
parent: 2
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 27789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-25.5
- parent: 2
- uid: 27790
components:
- type: Transform
@@ -194638,11 +196173,6 @@ entities:
parent: 2
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 27817
- components:
- - type: Transform
- pos: 62.5,-24.5
- parent: 2
- uid: 27818
components:
- type: Transform
@@ -194773,12 +196303,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -65.5,-26.5
parent: 2
- - uid: 27836
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-30.5
- parent: 2
- uid: 27837
components:
- type: Transform
@@ -196137,6 +197661,23 @@ entities:
rot: 3.141592653589793 rad
pos: 74.5,22.5
parent: 2
+ - uid: 28824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,58.5
+ parent: 2
+ - uid: 34948
+ components:
+ - type: Transform
+ pos: -71.5,50.5
+ parent: 2
+ - uid: 35277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,54.5
+ parent: 2
- proto: PoweredSmallLightEmpty
entities:
- uid: 28027
@@ -196194,6 +197735,25 @@ entities:
rot: 3.141592653589793 rad
pos: -70.5,-37.5
parent: 2
+- proto: PoweredWarmSmallLight
+ entities:
+ - uid: 25981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-30.5
+ parent: 2
+ - uid: 27789
+ components:
+ - type: Transform
+ pos: 62.5,-24.5
+ parent: 2
+ - uid: 27817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-25.5
+ parent: 2
- proto: PrefilledSyringe
entities:
- uid: 28036
@@ -196213,53 +197773,193 @@ entities:
- type: Transform
pos: 57.5,14.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28039
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 56.5,25.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28040
components:
- type: Transform
pos: 25.5,9.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28041
components:
- type: Transform
pos: 43.5,11.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28042
components:
- type: Transform
pos: -8.5,2.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28043
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -15.5,5.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28044
components:
- type: Transform
pos: -25.5,-6.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28045
components:
- type: Transform
pos: -6.5,-1.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28046
components:
- type: Transform
pos: 5.5,-2.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 28047
components:
- type: Transform
pos: 72.5,2.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- proto: Protolathe
entities:
- uid: 28048
@@ -196889,6 +198589,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 68.5,29.5
parent: 2
+ - uid: 38615
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
- proto: RadAutoInjector
entities:
- uid: 28167
@@ -196898,6 +198603,36 @@ entities:
parent: 2
- proto: RadiationCollectorNoTank
entities:
+ - uid: 7532
+ components:
+ - type: Transform
+ pos: -69.5,54.5
+ parent: 2
+ - uid: 7680
+ components:
+ - type: Transform
+ pos: -67.5,50.5
+ parent: 2
+ - uid: 7696
+ components:
+ - type: Transform
+ pos: -69.5,50.5
+ parent: 2
+ - uid: 8694
+ components:
+ - type: Transform
+ pos: -46.5,-5.5
+ parent: 2
+ - uid: 14109
+ components:
+ - type: Transform
+ pos: -67.5,54.5
+ parent: 2
+ - uid: 16287
+ components:
+ - type: Transform
+ pos: -68.5,-11.5
+ parent: 2
- uid: 28168
components:
- type: Transform
@@ -198996,6 +200731,11 @@ entities:
- type: Transform
pos: 37.5,7.5
parent: 2
+ - uid: 31455
+ components:
+ - type: Transform
+ pos: 13.5,-17.5
+ parent: 2
- proto: RandomSnacks
entities:
- uid: 28533
@@ -199043,6 +200783,11 @@ entities:
parent: 2
- proto: RandomVending
entities:
+ - uid: 18482
+ components:
+ - type: Transform
+ pos: 72.5,4.5
+ parent: 2
- uid: 28540
components:
- type: Transform
@@ -199259,8 +201004,42 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 2
+- proto: Reflector
+ entities:
+ - uid: 34167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -64.5,52.5
+ parent: 2
+ - uid: 34576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,52.5
+ parent: 2
- proto: ReinforcedPlasmaWindow
entities:
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: -66.5,54.5
+ parent: 2
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: -70.5,54.5
+ parent: 2
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: -70.5,50.5
+ parent: 2
+ - uid: 19907
+ components:
+ - type: Transform
+ pos: -66.5,50.5
+ parent: 2
- uid: 28581
components:
- type: Transform
@@ -199272,11 +201051,6 @@ entities:
- type: Transform
pos: -69.5,44.5
parent: 2
- - uid: 28583
- components:
- - type: Transform
- pos: -69.5,48.5
- parent: 2
- uid: 28584
components:
- type: Transform
@@ -199298,11 +201072,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -69.5,28.5
parent: 2
- - uid: 28588
- components:
- - type: Transform
- pos: -69.5,49.5
- parent: 2
- uid: 28589
components:
- type: Transform
@@ -199365,31 +201134,6 @@ entities:
- type: Transform
pos: -69.5,29.5
parent: 2
- - uid: 28601
- components:
- - type: Transform
- pos: -66.5,57.5
- parent: 2
- - uid: 28602
- components:
- - type: Transform
- pos: -69.5,52.5
- parent: 2
- - uid: 28603
- components:
- - type: Transform
- pos: -69.5,53.5
- parent: 2
- - uid: 28604
- components:
- - type: Transform
- pos: -69.5,54.5
- parent: 2
- - uid: 28605
- components:
- - type: Transform
- pos: -69.5,50.5
- parent: 2
- uid: 28606
components:
- type: Transform
@@ -199594,6 +201338,21 @@ entities:
- type: Transform
pos: -118.5,44.5
parent: 2
+ - uid: 32422
+ components:
+ - type: Transform
+ pos: -66.5,53.5
+ parent: 2
+ - uid: 38760
+ components:
+ - type: Transform
+ pos: -66.5,52.5
+ parent: 2
+ - uid: 38761
+ components:
+ - type: Transform
+ pos: -66.5,51.5
+ parent: 2
- proto: ReinforcedUraniumWindow
entities:
- uid: 28646
@@ -199631,6 +201390,31 @@ entities:
parent: 2
- proto: ReinforcedWindow
entities:
+ - uid: 13444
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 2
+ - uid: 19382
+ components:
+ - type: Transform
+ pos: -75.5,49.5
+ parent: 2
+ - uid: 19886
+ components:
+ - type: Transform
+ pos: -75.5,53.5
+ parent: 2
+ - uid: 22208
+ components:
+ - type: Transform
+ pos: -75.5,51.5
+ parent: 2
+ - uid: 22831
+ components:
+ - type: Transform
+ pos: -75.5,55.5
+ parent: 2
- uid: 28652
components:
- type: Transform
@@ -200062,12 +201846,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,-13.5
parent: 2
- - uid: 28729
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-12.5
- parent: 2
- uid: 28730
components:
- type: Transform
@@ -200614,12 +202392,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -69.5,-46.5
parent: 2
- - uid: 28824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,52.5
- parent: 2
- uid: 28825
components:
- type: Transform
@@ -200662,42 +202434,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -67.5,-46.5
parent: 2
- - uid: 28832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,50.5
- parent: 2
- uid: 28833
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -16.5,8.5
parent: 2
- - uid: 28834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,49.5
- parent: 2
- - uid: 28835
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,48.5
- parent: 2
- - uid: 28836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,53.5
- parent: 2
- - uid: 28837
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,54.5
- parent: 2
- uid: 28838
components:
- type: Transform
@@ -201333,11 +203075,6 @@ entities:
- type: Transform
pos: 58.5,-45.5
parent: 2
- - uid: 28957
- components:
- - type: Transform
- pos: 11.5,-12.5
- parent: 2
- uid: 28958
components:
- type: Transform
@@ -202180,11 +203917,6 @@ entities:
- type: Transform
pos: 19.5,-37.5
parent: 2
- - uid: 29123
- components:
- - type: Transform
- pos: 11.5,-16.5
- parent: 2
- uid: 29124
components:
- type: Transform
@@ -204749,12 +206481,6 @@ entities:
- type: Transform
pos: 1.5,-85.5
parent: 2
- - uid: 29626
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-14.5
- parent: 2
- uid: 29627
components:
- type: Transform
@@ -204889,21 +206615,6 @@ entities:
rot: 3.141592653589793 rad
pos: 64.5,-38.5
parent: 2
- - uid: 29653
- components:
- - type: Transform
- pos: 15.5,-15.5
- parent: 2
- - uid: 29654
- components:
- - type: Transform
- pos: 15.5,-14.5
- parent: 2
- - uid: 29655
- components:
- - type: Transform
- pos: 15.5,-16.5
- parent: 2
- uid: 29656
components:
- type: Transform
@@ -205448,12 +207159,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,-17.5
parent: 2
- - uid: 29761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-17.5
- parent: 2
- uid: 29762
components:
- type: Transform
@@ -205464,12 +207169,6 @@ entities:
- type: Transform
pos: 4.5,-6.5
parent: 2
- - uid: 29764
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-13.5
- parent: 2
- uid: 29765
components:
- type: Transform
@@ -205667,6 +207366,33 @@ entities:
rot: 1.5707963267948966 rad
pos: 69.5,34.5
parent: 2
+ - uid: 30943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-10.5
+ parent: 2
+ - uid: 38553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-12.5
+ parent: 2
+ - uid: 38592
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
+ - uid: 38593
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 38594
+ components:
+ - type: Transform
+ pos: 7.5,-16.5
+ parent: 2
- proto: RemoteSignaller
entities:
- uid: 15872
@@ -205986,6 +207712,12 @@ entities:
parent: 2
- proto: Screen
entities:
+ - uid: 18258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-17.5
+ parent: 2
- uid: 29843
components:
- type: Transform
@@ -206066,11 +207798,6 @@ entities:
- type: Transform
pos: -21.5,56.5
parent: 2
- - uid: 29859
- components:
- - type: Transform
- pos: 3.5,-13.5
- parent: 2
- uid: 29860
components:
- type: Transform
@@ -206432,6 +208159,11 @@ entities:
parent: 2
- proto: SheetSteel
entities:
+ - uid: 14936
+ components:
+ - type: Transform
+ pos: -61.677673,54.672146
+ parent: 2
- uid: 15834
components:
- type: Transform
@@ -206518,6 +208250,11 @@ entities:
- type: Transform
pos: 57.5,2.5
parent: 2
+ - uid: 38680
+ components:
+ - type: Transform
+ pos: -61.458923,54.672146
+ parent: 2
- proto: SheetSteel1
entities:
- uid: 29929
@@ -206639,11 +208376,6 @@ entities:
- type: Transform
pos: -5.5,-14.5
parent: 2
- - uid: 29943
- components:
- - type: Transform
- pos: 4.5,-14.5
- parent: 2
- uid: 29944
components:
- type: Transform
@@ -206671,18 +208403,6 @@ entities:
parent: 2
- proto: ShuttersNormal
entities:
- - uid: 29949
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-16.5
- parent: 2
- - uid: 29950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-15.5
- parent: 2
- uid: 29951
components:
- type: Transform
@@ -206712,12 +208432,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -120.5,37.5
parent: 2
- - uid: 29956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-16.5
- parent: 2
- uid: 29957
components:
- type: Transform
@@ -206729,12 +208443,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -116.5,41.5
parent: 2
- - uid: 29959
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-14.5
- parent: 2
- uid: 29960
components:
- type: Transform
@@ -206768,11 +208476,6 @@ entities:
rot: 3.141592653589793 rad
pos: -57.5,8.5
parent: 2
- - uid: 29966
- components:
- - type: Transform
- pos: 12.5,-17.5
- parent: 2
- uid: 29967
components:
- type: MetaData
@@ -206803,22 +208506,12 @@ entities:
- type: Transform
pos: -57.5,4.5
parent: 2
- - uid: 29972
- components:
- - type: Transform
- pos: 14.5,-17.5
- parent: 2
- uid: 29973
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -19.5,-48.5
parent: 2
- - uid: 29974
- components:
- - type: Transform
- pos: 13.5,-17.5
- parent: 2
- uid: 29975
components:
- type: Transform
@@ -206899,24 +208592,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -116.5,37.5
parent: 2
- - uid: 29989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-12.5
- parent: 2
- - uid: 29990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-14.5
- parent: 2
- - uid: 29991
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-15.5
- parent: 2
- proto: ShuttersNormalOpen
entities:
- uid: 29992
@@ -208799,23 +210474,6 @@ entities:
1463:
- - Pressed
- Toggle
- - uid: 30252
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-13.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 29966:
- - - Pressed
- - Toggle
- 29974:
- - - Pressed
- - Toggle
- 29972:
- - - Pressed
- - Toggle
- uid: 30253
components:
- type: Transform
@@ -210562,11 +212220,6 @@ entities:
- type: Transform
pos: -67.5,47.5
parent: 2
- - uid: 30456
- components:
- - type: Transform
- pos: -67.5,51.5
- parent: 2
- uid: 30457
components:
- type: Transform
@@ -210593,11 +212246,6 @@ entities:
rot: 3.141592653589793 rad
pos: -15.5,-32.5
parent: 2
- - uid: 30462
- components:
- - type: Transform
- pos: -67.5,55.5
- parent: 2
- uid: 30463
components:
- type: Transform
@@ -211401,13 +213049,21 @@ entities:
parent: 2
- proto: SoapOmega
entities:
- - uid: 30600
+ - uid: 1354
components:
- type: Transform
- pos: -5.398038,32.359573
- parent: 2
+ parent: 1403
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: SodaDispenser
entities:
+ - uid: 1596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-25.5
+ parent: 2
- uid: 30601
components:
- type: Transform
@@ -211450,6 +213106,22 @@ entities:
rot: 3.141592653589793 rad
pos: 72.5,-1.5
parent: 2
+- proto: SofaLeft
+ entities:
+ - uid: 26748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-17.5
+ parent: 2
+- proto: SofaRight
+ entities:
+ - uid: 26068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-17.5
+ parent: 2
- proto: SolarPanel
entities:
- uid: 30605
@@ -213353,13 +215025,40 @@ entities:
- type: Transform
pos: -7.5,41.5
parent: 2
-- proto: SpawnPointBlueShield
+- proto: SpawnPointBlueShieldEnsign
entities:
- - uid: 30943
+ - uid: 38536
components:
- type: Transform
pos: 4.5,1.5
parent: 2
+- proto: SpawnPointBlueShieldOfficer
+ entities:
+ - uid: 28729
+ components:
+ - type: Transform
+ pos: 10.5,-12.5
+ parent: 2
+ - uid: 38571
+ components:
+ - type: Transform
+ pos: 14.5,-15.5
+ parent: 2
+ - uid: 38577
+ components:
+ - type: Transform
+ pos: 14.5,-16.5
+ parent: 2
+ - uid: 38578
+ components:
+ - type: Transform
+ pos: 14.5,-13.5
+ parent: 2
+ - uid: 38579
+ components:
+ - type: Transform
+ pos: 14.5,-12.5
+ parent: 2
- proto: SpawnPointBotanist
entities:
- uid: 30944
@@ -213682,6 +215381,21 @@ entities:
parent: 2
- proto: SpawnPointParamedic
entities:
+ - uid: 19353
+ components:
+ - type: Transform
+ pos: 14.5,-42.5
+ parent: 2
+ - uid: 27744
+ components:
+ - type: Transform
+ pos: 13.5,-42.5
+ parent: 2
+ - uid: 27745
+ components:
+ - type: Transform
+ pos: 22.5,-25.5
+ parent: 2
- uid: 30998
components:
- type: Transform
@@ -215337,16 +217051,6 @@ entities:
- type: Transform
pos: -50.5,32.5
parent: 2
- - uid: 31284
- components:
- - type: Transform
- pos: -70.5,49.5
- parent: 2
- - uid: 31285
- components:
- - type: Transform
- pos: -70.5,53.5
- parent: 2
- uid: 31286
components:
- type: Transform
@@ -215823,6 +217527,21 @@ entities:
- type: Transform
pos: 2.5,2.5
parent: 2
+ - uid: 38612
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
+ - uid: 38613
+ components:
+ - type: Transform
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 38614
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
- proto: SuitStorageCaptain
entities:
- uid: 31342
@@ -216076,6 +217795,14 @@ entities:
- type: Transform
pos: 45.5,15.5
parent: 2
+- proto: SupermatterCrystal
+ entities:
+ - uid: 15468
+ components:
+ - type: Transform
+ pos: -68.5,52.5
+ parent: 2
+ - type: CMExplosionEffect
- proto: SurveillanceCameraCommand
entities:
- uid: 31389
@@ -216272,17 +217999,6 @@ entities:
rot: 3.141592653589793 rad
pos: -46.5,2.5
parent: 2
- - uid: 31416
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,47.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Верхние фильтры атмоса
- uid: 31417
components:
- type: Transform
@@ -216472,6 +218188,36 @@ entities:
parent: 2
- proto: SurveillanceCameraGeneral
entities:
+ - uid: 1729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,-18.5
+ parent: 2
+ - uid: 23828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,-15.5
+ parent: 2
+ - uid: 25648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,-13.5
+ parent: 2
+ - uid: 26167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-7.5
+ parent: 2
+ - uid: 29991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,-17.5
+ parent: 2
- uid: 31435
components:
- type: Transform
@@ -216630,28 +218376,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Север эвакуации
- - uid: 31455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-12.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Коридор (восток)
- - uid: 31456
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-18.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Коридор (юго-восток)
- uid: 31457
components:
- type: Transform
@@ -216880,16 +218604,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Общественный сад
- - uid: 31480
- components:
- - type: Transform
- pos: 24.5,-7.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Зал суда
- uid: 31481
components:
- type: Transform
@@ -216923,12 +218637,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Коридор (запад)
- - uid: 31484
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-18.5
- parent: 2
- uid: 31485
components:
- type: Transform
@@ -216951,18 +218659,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Коридор (восток)
- - uid: 31487
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-14.5
- parent: 2
- - uid: 31488
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-12.5
- parent: 2
- uid: 31489
components:
- type: Transform
@@ -216981,8 +218677,25 @@ entities:
rot: 1.5707963267948966 rad
pos: -12.5,-68.5
parent: 2
+ - uid: 38535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-23.5
+ parent: 2
+ - uid: 38539
+ components:
+ - type: Transform
+ pos: 28.5,-7.5
+ parent: 2
- proto: SurveillanceCameraMedical
entities:
+ - uid: 25647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-52.5
+ parent: 2
- uid: 31492
components:
- type: Transform
@@ -217198,6 +218911,12 @@ entities:
- type: Transform
pos: 11.5,-40.5
parent: 2
+ - uid: 38563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-43.5
+ parent: 2
- proto: SurveillanceCameraRouterCommand
entities:
- uid: 31515
@@ -217256,6 +218975,18 @@ entities:
parent: 2
- proto: SurveillanceCameraScience
entities:
+ - uid: 18271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-41.5
+ parent: 2
+ - uid: 25248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-35.5
+ parent: 2
- uid: 31523
components:
- type: Transform
@@ -218131,12 +219862,6 @@ entities:
- type: Transform
pos: 31.5,-31.5
parent: 2
- - uid: 31642
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.370265,-44.115032
- parent: 2
- proto: Table
entities:
- uid: 31643
@@ -218442,12 +220167,6 @@ entities:
- type: Transform
pos: -63.5,-36.5
parent: 2
- - uid: 31700
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-38.5
- parent: 2
- uid: 31701
components:
- type: Transform
@@ -220081,6 +221800,11 @@ entities:
parent: 2
- proto: TableReinforced
entities:
+ - uid: 23408
+ components:
+ - type: Transform
+ pos: -57.5,20.5
+ parent: 2
- uid: 32008
components:
- type: Transform
@@ -220129,22 +221853,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,28.5
parent: 2
- - uid: 32016
- components:
- - type: Transform
- pos: 30.5,20.5
- parent: 2
- uid: 32017
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 21.5,30.5
parent: 2
- - uid: 32018
- components:
- - type: Transform
- pos: 31.5,20.5
- parent: 2
- uid: 32019
components:
- type: Transform
@@ -221892,6 +223606,21 @@ entities:
rot: 3.141592653589793 rad
pos: 31.5,24.5
parent: 2
+ - uid: 38591
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+ - uid: 38600
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 38675
+ components:
+ - type: Transform
+ pos: -61.5,54.5
+ parent: 2
- proto: TableReinforcedGlass
entities:
- uid: 32351
@@ -222083,24 +223812,12 @@ entities:
- type: Transform
pos: -79.5,13.5
parent: 2
- - uid: 32385
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-44.5
- parent: 2
- uid: 32386
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 31.5,-31.5
parent: 2
- - uid: 32387
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-43.5
- parent: 2
- uid: 32388
components:
- type: Transform
@@ -222289,18 +224006,6 @@ entities:
- type: Transform
pos: 9.5,3.5
parent: 2
- - uid: 32422
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-17.5
- parent: 2
- - uid: 32423
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-17.5
- parent: 2
- uid: 32424
components:
- type: Transform
@@ -222378,26 +224083,11 @@ entities:
- type: Transform
pos: -5.5,-15.5
parent: 2
- - uid: 32438
- components:
- - type: Transform
- pos: 4.5,-15.5
- parent: 2
- uid: 32439
components:
- type: Transform
pos: 0.5,-14.5
parent: 2
- - uid: 32440
- components:
- - type: Transform
- pos: 4.5,-16.5
- parent: 2
- - uid: 32441
- components:
- - type: Transform
- pos: 3.5,-16.5
- parent: 2
- uid: 32442
components:
- type: Transform
@@ -222922,11 +224612,6 @@ entities:
- type: Transform
pos: -2.5,14.5
parent: 2
- - uid: 32541
- components:
- - type: Transform
- pos: -2.5,12.5
- parent: 2
- uid: 32542
components:
- type: Transform
@@ -223721,6 +225406,13 @@ entities:
parent: 2
- type: PointLight
color: '#FF3300FF'
+- proto: TelecomServerFilledBlueShield
+ entities:
+ - uid: 23090
+ components:
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 2
- proto: TelecomServerFilledCargo
entities:
- uid: 32692
@@ -223728,6 +225420,13 @@ entities:
- type: Transform
pos: -4.5,4.5
parent: 2
+- proto: TelecomServerFilledCommand
+ entities:
+ - uid: 27836
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 2
- proto: TelecomServerFilledCommon
entities:
- uid: 32693
@@ -223744,26 +225443,11 @@ entities:
parent: 2
- proto: TelecomServerFilledLaw
entities:
- - uid: 18482
+ - uid: 22920
components:
- type: Transform
- pos: -2.5,10.5
+ pos: 2.5,10.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 18483
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- proto: TelecomServerFilledMedical
entities:
- uid: 32695
@@ -223800,6 +225484,50 @@ entities:
parent: 26868
- type: Physics
canCollide: False
+- proto: TelescopicShield
+ entities:
+ - uid: 2446
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 2449
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 15766
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 16207
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 38583
+ components:
+ - type: Transform
+ parent: 38581
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 38584
+ components:
+ - type: Transform
+ parent: 38581
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: TeslaGenerator
entities:
- uid: 32699
@@ -223810,6 +225538,48 @@ entities:
parent: 2
- proto: TeslaGroundingRod
entities:
+ - uid: 1081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,50.5
+ parent: 2
+ - uid: 1123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,49.5
+ parent: 2
+ - uid: 1805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,55.5
+ parent: 2
+ - uid: 14213
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,49.5
+ parent: 2
+ - uid: 22153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -69.5,49.5
+ parent: 2
+ - uid: 28588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,55.5
+ parent: 2
+ - uid: 28603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,55.5
+ parent: 2
- uid: 32700
components:
- type: Transform
@@ -223830,6 +225600,12 @@ entities:
- type: Transform
pos: -70.5,-12.5
parent: 2
+ - uid: 34174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,54.5
+ parent: 2
- proto: TeslaToy
entities:
- uid: 32704
@@ -224474,13 +226250,103 @@ entities:
- type: Transform
pos: 43.700527,-24.265348
parent: 2
+- proto: TowelColorGreen
+ entities:
+ - uid: 38790
+ components:
+ - type: Transform
+ pos: 57.217373,-30.537388
+ parent: 2
+ - uid: 38791
+ components:
+ - type: Transform
+ pos: 57.670498,-30.537388
+ parent: 2
+- proto: TowelColorMime
+ entities:
+ - uid: 16104
+ components:
+ - type: Transform
+ pos: 57.623627,-29.693638
+ parent: 2
+ - uid: 16105
+ components:
+ - type: Transform
+ pos: 57.311127,-29.693638
+ parent: 2
+- proto: TowelColorNT
+ entities:
+ - uid: 2452
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 2454
+ components:
+ - type: Transform
+ parent: 2441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 15763
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 16030
+ components:
+ - type: Transform
+ parent: 13454
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 29974
+ components:
+ - type: Transform
+ parent: 26027
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 38588
+ components:
+ - type: Transform
+ parent: 38581
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: TowelColorRed
+ entities:
+ - uid: 16101
+ components:
+ - type: Transform
+ pos: 57.608,-29.303013
+ parent: 2
+ - uid: 16103
+ components:
+ - type: Transform
+ pos: 57.373627,-29.303013
+ parent: 2
- proto: TowelColorWhite
entities:
+ - uid: 16106
+ components:
+ - type: Transform
+ pos: 57.232998,-30.099888
+ parent: 2
- uid: 32817
components:
- type: Transform
pos: 68.77173,29.353806
parent: 2
+ - uid: 38789
+ components:
+ - type: Transform
+ pos: 57.607998,-30.131138
+ parent: 2
- proto: ToyAi
entities:
- uid: 32818
@@ -225524,11 +227390,6 @@ entities:
- type: Transform
pos: 35.5,-6.5
parent: 2
- - uid: 32942
- components:
- - type: Transform
- pos: 34.5,-6.5
- parent: 2
- proto: VendingMachineCola
entities:
- uid: 32943
@@ -225601,6 +227462,11 @@ entities:
- type: Transform
pos: 36.5,-6.5
parent: 2
+ - uid: 38551
+ components:
+ - type: Transform
+ pos: -39.5,-78.5
+ parent: 2
- proto: VendingMachineEngiDrobe
entities:
- uid: 32954
@@ -225782,6 +227648,11 @@ entities:
- type: Transform
pos: 58.5,8.5
parent: 2
+ - uid: 38580
+ components:
+ - type: Transform
+ pos: 6.5,-11.5
+ parent: 2
- proto: VendingMachineSecDrobe
entities:
- uid: 32983
@@ -225858,10 +227729,10 @@ entities:
parent: 2
- proto: VendingMachineSyndieDrobe
entities:
- - uid: 32995
+ - uid: 23827
components:
- type: Transform
- pos: -39.5,-78.5
+ pos: -73.5,-33.5
parent: 2
- proto: VendingMachineTankDispenserEngineering
entities:
@@ -225924,6 +227795,11 @@ entities:
- type: Transform
pos: -7.5,-15.5
parent: 2
+ - uid: 38616
+ components:
+ - type: Transform
+ pos: 4.5,-14.5
+ parent: 2
- proto: VendingMachineTheater
entities:
- uid: 33007
@@ -225999,12 +227875,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 50.5,-33.5
parent: 2
- - uid: 33020
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-13.5
- parent: 2
- uid: 33021
components:
- type: Transform
@@ -226162,6 +228032,213 @@ entities:
parent: 2
- proto: WallReinforced
entities:
+ - uid: 13367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-16.5
+ parent: 2
+ - uid: 13438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-16.5
+ parent: 2
+ - uid: 14181
+ components:
+ - type: Transform
+ pos: -68.5,47.5
+ parent: 2
+ - uid: 14580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,51.5
+ parent: 2
+ - uid: 14615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -72.5,53.5
+ parent: 2
+ - uid: 14665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,53.5
+ parent: 2
+ - uid: 14804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,55.5
+ parent: 2
+ - uid: 14933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -72.5,51.5
+ parent: 2
+ - uid: 14935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,53.5
+ parent: 2
+ - uid: 14937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,51.5
+ parent: 2
+ - uid: 14939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,55.5
+ parent: 2
+ - uid: 16215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-15.5
+ parent: 2
+ - uid: 16218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-14.5
+ parent: 2
+ - uid: 16232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-13.5
+ parent: 2
+ - uid: 16288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-17.5
+ parent: 2
+ - uid: 16320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-17.5
+ parent: 2
+ - uid: 16609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-17.5
+ parent: 2
+ - uid: 19331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-16.5
+ parent: 2
+ - uid: 19352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,49.5
+ parent: 2
+ - uid: 23441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,57.5
+ parent: 2
+ - uid: 23619
+ components:
+ - type: Transform
+ pos: -75.5,47.5
+ parent: 2
+ - uid: 24275
+ components:
+ - type: Transform
+ pos: -75.5,56.5
+ parent: 2
+ - uid: 24287
+ components:
+ - type: Transform
+ pos: -75.5,52.5
+ parent: 2
+ - uid: 24471
+ components:
+ - type: Transform
+ pos: -74.5,47.5
+ parent: 2
+ - uid: 24500
+ components:
+ - type: Transform
+ pos: -69.5,57.5
+ parent: 2
+ - uid: 24570
+ components:
+ - type: Transform
+ pos: -71.5,57.5
+ parent: 2
+ - uid: 24652
+ components:
+ - type: Transform
+ pos: -75.5,54.5
+ parent: 2
+ - uid: 24765
+ components:
+ - type: Transform
+ pos: -73.5,57.5
+ parent: 2
+ - uid: 24887
+ components:
+ - type: Transform
+ pos: -75.5,50.5
+ parent: 2
+ - uid: 24888
+ components:
+ - type: Transform
+ pos: -70.5,57.5
+ parent: 2
+ - uid: 26086
+ components:
+ - type: Transform
+ pos: -75.5,48.5
+ parent: 2
+ - uid: 26249
+ components:
+ - type: Transform
+ pos: -72.5,57.5
+ parent: 2
+ - uid: 26664
+ components:
+ - type: Transform
+ pos: -75.5,57.5
+ parent: 2
+ - uid: 27163
+ components:
+ - type: Transform
+ pos: -74.5,57.5
+ parent: 2
+ - uid: 27777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,49.5
+ parent: 2
+ - uid: 31456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-14.5
+ parent: 2
+ - uid: 32995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-15.5
+ parent: 2
- uid: 33046
components:
- type: Transform
@@ -228894,16 +230971,6 @@ entities:
- type: Transform
pos: -54.5,26.5
parent: 2
- - uid: 33550
- components:
- - type: Transform
- pos: -73.5,52.5
- parent: 2
- - uid: 33551
- components:
- - type: Transform
- pos: -73.5,55.5
- parent: 2
- uid: 33552
components:
- type: Transform
@@ -229097,23 +231164,11 @@ entities:
- type: Transform
pos: 11.5,-11.5
parent: 2
- - uid: 33586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-10.5
- parent: 2
- uid: 33587
components:
- type: Transform
pos: -10.5,-10.5
parent: 2
- - uid: 33588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-10.5
- parent: 2
- uid: 33589
components:
- type: Transform
@@ -229202,11 +231257,6 @@ entities:
- type: Transform
pos: 13.5,-82.5
parent: 2
- - uid: 33606
- components:
- - type: Transform
- pos: -73.5,53.5
- parent: 2
- uid: 33607
components:
- type: Transform
@@ -229243,11 +231293,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -43.5,15.5
parent: 2
- - uid: 33613
- components:
- - type: Transform
- pos: -73.5,54.5
- parent: 2
- uid: 33614
components:
- type: Transform
@@ -229269,26 +231314,6 @@ entities:
- type: Transform
pos: -63.5,-48.5
parent: 2
- - uid: 33618
- components:
- - type: Transform
- pos: -67.5,56.5
- parent: 2
- - uid: 33619
- components:
- - type: Transform
- pos: -70.5,55.5
- parent: 2
- - uid: 33620
- components:
- - type: Transform
- pos: -72.5,55.5
- parent: 2
- - uid: 33621
- components:
- - type: Transform
- pos: -69.5,55.5
- parent: 2
- uid: 33622
components:
- type: Transform
@@ -229460,16 +231485,6 @@ entities:
- type: Transform
pos: 59.5,-36.5
parent: 2
- - uid: 33652
- components:
- - type: Transform
- pos: -71.5,55.5
- parent: 2
- - uid: 33653
- components:
- - type: Transform
- pos: -67.5,55.5
- parent: 2
- uid: 33654
components:
- type: Transform
@@ -231922,11 +233937,6 @@ entities:
- type: Transform
pos: -33.5,20.5
parent: 2
- - uid: 34114
- components:
- - type: Transform
- pos: -73.5,50.5
- parent: 2
- uid: 34115
components:
- type: Transform
@@ -232198,11 +234208,6 @@ entities:
- type: Transform
pos: -48.5,10.5
parent: 2
- - uid: 34167
- components:
- - type: Transform
- pos: -72.5,51.5
- parent: 2
- uid: 34168
components:
- type: Transform
@@ -232233,11 +234238,6 @@ entities:
- type: Transform
pos: -27.5,-78.5
parent: 2
- - uid: 34174
- components:
- - type: Transform
- pos: -71.5,51.5
- parent: 2
- uid: 34175
components:
- type: Transform
@@ -234292,11 +236292,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -40.5,-37.5
parent: 2
- - uid: 34576
- components:
- - type: Transform
- pos: -67.5,51.5
- parent: 2
- uid: 34577
components:
- type: Transform
@@ -234517,11 +236512,6 @@ entities:
- type: Transform
pos: -44.5,-14.5
parent: 2
- - uid: 34620
- components:
- - type: Transform
- pos: -73.5,49.5
- parent: 2
- uid: 34621
components:
- type: Transform
@@ -234669,11 +236659,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -10.5,63.5
parent: 2
- - uid: 34649
- components:
- - type: Transform
- pos: -73.5,48.5
- parent: 2
- uid: 34650
components:
- type: Transform
@@ -235054,11 +237039,6 @@ entities:
- type: Transform
pos: 6.5,21.5
parent: 2
- - uid: 34723
- components:
- - type: Transform
- pos: 5.5,-15.5
- parent: 2
- uid: 34724
components:
- type: Transform
@@ -235193,11 +237173,6 @@ entities:
rot: 3.141592653589793 rad
pos: -15.5,63.5
parent: 2
- - uid: 34750
- components:
- - type: Transform
- pos: 5.5,-16.5
- parent: 2
- uid: 34751
components:
- type: Transform
@@ -236207,11 +238182,6 @@ entities:
- type: Transform
pos: -50.5,39.5
parent: 2
- - uid: 34948
- components:
- - type: Transform
- pos: -73.5,51.5
- parent: 2
- uid: 34949
components:
- type: Transform
@@ -236782,11 +238752,6 @@ entities:
- type: Transform
pos: -31.5,-35.5
parent: 2
- - uid: 35060
- components:
- - type: Transform
- pos: 5.5,-14.5
- parent: 2
- uid: 35061
components:
- type: Transform
@@ -237896,16 +239861,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -82.5,4.5
parent: 2
- - uid: 35277
- components:
- - type: Transform
- pos: -70.5,51.5
- parent: 2
- - uid: 35278
- components:
- - type: Transform
- pos: -69.5,51.5
- parent: 2
- uid: 35279
components:
- type: Transform
@@ -241890,6 +243845,30 @@ entities:
rot: 3.141592653589793 rad
pos: 67.5,33.5
parent: 2
+ - uid: 38537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-12.5
+ parent: 2
+ - uid: 38538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-14.5
+ parent: 2
+ - uid: 38555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-17.5
+ parent: 2
+ - uid: 38557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-13.5
+ parent: 2
- proto: WallReinforcedDiagonal
entities:
- uid: 36044
@@ -247767,11 +249746,6 @@ entities:
- type: Transform
pos: -20.5,-44.5
parent: 2
- - uid: 37183
- components:
- - type: Transform
- pos: 11.5,-13.5
- parent: 2
- uid: 37184
components:
- type: Transform
@@ -251270,6 +253244,15 @@ entities:
parent: 2
- type: WarpPoint
location: Научный - Заброшенная комната
+- proto: WarpPointBeacon
+ entities:
+ - uid: 3157
+ components:
+ - type: MetaData
+ name: Инженерный - Суперматерия
+ - type: Transform
+ pos: -68.5,52.5
+ parent: 2
- proto: WarpPointBombing
entities:
- uid: 37799
@@ -251843,6 +253826,86 @@ entities:
fireCost: 50
proto: BulletDisabler
- type: InsideEntityStorage
+ - uid: 2447
+ components:
+ - type: Transform
+ parent: 2441
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 2450
+ components:
+ - type: Transform
+ parent: 2441
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 15768
+ components:
+ - type: Transform
+ parent: 13454
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 16186
+ components:
+ - type: Transform
+ parent: 13454
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
- uid: 37867
components:
- type: Transform
@@ -251899,6 +253962,26 @@ entities:
- type: HitscanBatteryAmmoProvider
fireCost: 50
proto: BulletDisabler
+ - uid: 38582
+ components:
+ - type: Transform
+ parent: 38581
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
- proto: WeaponEnergyTurretAI
entities:
- uid: 37870
@@ -251970,15 +254053,6 @@ entities:
- type: Transform
pos: 55.5,-4.5
parent: 2
-- proto: WeaponPistolDeagle
- entities:
- - uid: 25650
- components:
- - type: Transform
- parent: 25645
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: WeaponRifleBR64
entities:
- uid: 15854
@@ -252009,8 +254083,10 @@ entities:
- uid: 37884
components:
- type: Transform
- pos: -23.5,-77.5
- parent: 2
+ parent: 29943
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: WeaponTurretSyndicateBroken
entities:
- uid: 37885
@@ -253444,23 +255520,11 @@ entities:
- type: Transform
pos: -18.5,-74.5
parent: 2
- - uid: 38125
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,48.5
- parent: 2
- uid: 38126
components:
- type: Transform
pos: -14.5,-74.5
parent: 2
- - uid: 38127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,47.5
- parent: 2
- uid: 38128
components:
- type: Transform
@@ -253548,17 +255612,6 @@ entities:
rot: 3.141592653589793 rad
pos: 35.5,-13.5
parent: 2
- - uid: 38143
- components:
- - type: Transform
- pos: -55.5,49.5
- parent: 2
- - uid: 38144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,48.5
- parent: 2
- proto: WindowFrostedDirectional
entities:
- uid: 38145
@@ -253784,6 +255837,39 @@ entities:
parent: 2
- proto: WindowReinforcedDirectional
entities:
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: -69.5,51.5
+ parent: 2
+ - uid: 14209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,53.5
+ parent: 2
+ - uid: 33620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,53.5
+ parent: 2
+ - uid: 33621
+ components:
+ - type: Transform
+ pos: -67.5,51.5
+ parent: 2
+ - uid: 34114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,53.5
+ parent: 2
+ - uid: 34649
+ components:
+ - type: Transform
+ pos: -68.5,51.5
+ parent: 2
- uid: 38184
components:
- type: Transform
@@ -253821,22 +255907,11 @@ entities:
rot: 3.141592653589793 rad
pos: 73.5,24.5
parent: 2
- - uid: 38191
- components:
- - type: Transform
- pos: 4.5,-14.5
- parent: 2
- uid: 38192
components:
- type: Transform
pos: -5.5,-14.5
parent: 2
- - uid: 38193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-14.5
- parent: 2
- uid: 38194
components:
- type: Transform
diff --git a/Resources/Maps/_Sunrise/Station/loop.yml b/Resources/Maps/_Sunrise/Station/loop.yml
index dc733eb537..99dc69c7ab 100644
--- a/Resources/Maps/_Sunrise/Station/loop.yml
+++ b/Resources/Maps/_Sunrise/Station/loop.yml
@@ -2,12 +2,12 @@ meta:
format: 7
category: Map
engineVersion: 255.1.0
- forkId: ""
- forkVersion: ""
- time: 05/05/2025 06:57:41
- entityCount: 18915
+ forkId: sunrise_station_public
+ forkVersion: f012d89aa9d25bb6afaa8ab61174670c1ef23fd1
+ time: 05/10/2025 08:31:23
+ entityCount: 19108
maps:
-- 1
+- 18935
grids:
- 2
orphans: []
@@ -56,25 +56,13 @@ tilemap:
entities:
- proto: ""
entities:
- - uid: 1
- components:
- - type: MetaData
- name: Map Entity
- - type: Transform
- - type: Map
- mapPaused: True
- - type: PhysicsMap
- - type: GridTree
- - type: MovedGrids
- - type: Broadphase
- - type: OccluderTree
- uid: 2
components:
- type: MetaData
name: grid
- type: Transform
pos: 5.375742,-1.5783513
- parent: 1
+ parent: 18935
- type: MapGrid
chunks:
0,0:
@@ -219,7 +207,7 @@ entities:
version: 6
-5,4:
ind: -5,4
- tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAALAAAAAACHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHgAAAAACHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAALAAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA
+ tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAACgAAAAAACgAAAAAACgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAALAAAAAACHQAAAAAACgAAAAAACgAAAAAACgAAAAAAKgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAACgAAAAAACgAAAAAACgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAACgAAAAAACgAAAAAACgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAACgAAAAAACgAAAAAACgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAACgAAAAAACgAAAAAACgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAALAAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA
version: 6
-3,4:
ind: -3,4
@@ -311,7 +299,7 @@ entities:
version: 6
-5,5:
ind: -5,5
- tiles: HQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA
+ tiles: HQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA
version: 6
1,-1:
ind: 1,-1
@@ -359,7 +347,7 @@ entities:
version: 6
-6,5:
ind: -6,5
- tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA
+ tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA
version: 6
2,-1:
ind: 2,-1
@@ -562,6 +550,20 @@ entities:
2208: -3,64
2670: -38,63
2974: -32,52
+ 3116: -71,32
+ 3117: -71,33
+ 3118: -69,33
+ 3119: -69,32
+ 3120: -69,31
+ 3121: -69,30
+ 3122: -69,29
+ 3123: -69,28
+ 3124: -71,29
+ 3126: -74,29
+ 3127: -74,28
+ 3128: -74,32
+ 3129: -74,33
+ 3162: -71,28
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
@@ -706,7 +708,8 @@ entities:
color: '#334E6DFF'
id: BrickCornerOverlayNE
decals:
- 3032: -69,33
+ 3091: -69,33
+ 3150: -75,33
- node:
color: '#3EB38896'
id: BrickCornerOverlayNE
@@ -754,7 +757,8 @@ entities:
color: '#334E6DFF'
id: BrickCornerOverlayNW
decals:
- 3029: -76,33
+ 3092: -76,33
+ 3137: -70,33
- node:
color: '#3EB38896'
id: BrickCornerOverlayNW
@@ -797,7 +801,9 @@ entities:
color: '#334E6DFF'
id: BrickCornerOverlaySE
decals:
- 3030: -69,28
+ 3095: -69,28
+ 3159: -72,28
+ 3161: -75,28
- node:
color: '#3EB38896'
id: BrickCornerOverlaySE
@@ -856,8 +862,10 @@ entities:
color: '#334E6DFF'
id: BrickCornerOverlaySW
decals:
- 3031: -76,28
- 3055: -74,35
+ 3093: -74,35
+ 3094: -76,28
+ 3158: -70,28
+ 3160: -73,28
- node:
color: '#3EB38896'
id: BrickCornerOverlaySW
@@ -945,12 +953,21 @@ entities:
color: '#334E6DFF'
id: BrickLineOverlayE
decals:
- 3021: -69,29
- 3022: -69,30
- 3023: -69,31
- 3024: -69,32
- 3043: -75,31
- 3044: -75,30
+ 3108: -69,29
+ 3109: -69,30
+ 3110: -69,31
+ 3111: -69,32
+ 3133: -72,32
+ 3134: -72,33
+ 3147: -72,29
+ 3148: -75,29
+ 3149: -75,32
+ 3163: -70,28
+ 3164: -70,29
+ 3165: -70,30
+ 3166: -70,31
+ 3167: -70,32
+ 3168: -70,33
- node:
color: '#3EB38896'
id: BrickLineOverlayE
@@ -1048,14 +1065,10 @@ entities:
color: '#334E6DFF'
id: BrickLineOverlayN
decals:
- 3025: -70,33
- 3026: -71,33
- 3027: -74,33
- 3028: -75,33
- 3035: -71,29
- 3036: -72,29
- 3037: -73,29
- 3038: -74,29
+ 3113: -71,33
+ 3114: -74,33
+ 3132: -71,31
+ 3153: -74,31
- node:
color: '#3EB38896'
id: BrickLineOverlayN
@@ -1168,18 +1181,11 @@ entities:
color: '#334E6DFF'
id: BrickLineOverlayS
decals:
- 3011: -75,28
- 3012: -74,28
- 3013: -73,28
- 3014: -72,28
- 3015: -71,28
- 3016: -70,28
- 3039: -74,32
- 3040: -73,32
- 3041: -72,32
- 3048: -71,32
- 3053: -70,35
- 3054: -71,35
+ 3101: -74,28
+ 3106: -70,35
+ 3107: -71,35
+ 3154: -71,30
+ 3155: -74,30
- node:
color: '#3EB38896'
id: BrickLineOverlayS
@@ -1297,12 +1303,15 @@ entities:
color: '#334E6DFF'
id: BrickLineOverlayW
decals:
- 3017: -76,29
- 3018: -76,30
- 3019: -76,31
- 3020: -76,32
- 3045: -70,31
- 3046: -70,30
+ 3096: -76,29
+ 3097: -76,30
+ 3098: -76,31
+ 3099: -76,32
+ 3135: -70,32
+ 3151: -73,33
+ 3152: -73,32
+ 3156: -73,29
+ 3157: -70,29
- node:
color: '#3EB38896'
id: BrickLineOverlayW
@@ -1374,6 +1383,72 @@ entities:
1676: -17,10
1677: -17,11
1678: -17,12
+ - node:
+ color: '#1861D5FF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 3057: -71,78
+ 3064: -71,84
+ 3084: -67,83
+ - node:
+ color: '#1861D5FF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 3067: -74,84
+ 3083: -69,83
+ - node:
+ color: '#1861D5FF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 3063: -71,72
+ 3080: -71,80
+ 3085: -67,81
+ - node:
+ color: '#1861D5FF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 3068: -74,72
+ - node:
+ color: '#1861D5FF'
+ id: BrickTileSteelLineE
+ decals:
+ 3058: -71,77
+ 3059: -71,76
+ 3060: -71,75
+ 3061: -71,74
+ 3062: -71,73
+ 3065: -71,83
+ 3066: -71,82
+ 3086: -67,82
+ - node:
+ color: '#1861D5FF'
+ id: BrickTileSteelLineN
+ decals:
+ 3078: -72,84
+ 3079: -73,84
+ 3081: -72,78
+ 3082: -74,78
+ 3089: -68,83
+ - node:
+ color: '#1861D5FF'
+ id: BrickTileSteelLineS
+ decals:
+ 3074: -72,80
+ 3087: -68,81
+ 3088: -69,81
+ - node:
+ color: '#1861D5FF'
+ id: BrickTileSteelLineW
+ decals:
+ 3069: -74,73
+ 3070: -74,74
+ 3071: -74,75
+ 3072: -74,76
+ 3073: -74,77
+ 3075: -74,81
+ 3076: -74,82
+ 3077: -74,83
+ 3090: -69,82
- node:
color: '#DE3A3A96'
id: BrickTileWhiteBox
@@ -2985,22 +3060,26 @@ entities:
color: '#334E6DFF'
id: MiniTileInnerOverlayNE
decals:
- 3052: -75,29
+ 3140: -72,31
+ 3141: -75,31
- node:
color: '#334E6DFF'
id: MiniTileInnerOverlayNW
decals:
- 3051: -70,29
+ 3139: -70,31
+ 3142: -73,31
- node:
color: '#334E6DFF'
id: MiniTileInnerOverlaySE
decals:
- 3050: -75,32
+ 3143: -72,30
+ 3146: -75,30
- node:
color: '#334E6DFF'
id: MiniTileInnerOverlaySW
decals:
- 3049: -70,32
+ 3144: -70,30
+ 3145: -73,30
- node:
color: '#39C800FF'
id: MiniTileLineOverlayE
@@ -3673,43 +3752,43 @@ entities:
0: 30583
2,-1:
0: 32512
- 2: 6
+ 1: 6
2,4:
0: 6007
3,0:
- 1: 12784
- 2: 49152
+ 2: 12784
+ 1: 49152
3,1:
- 1: 4369
- 2: 192
+ 2: 4369
+ 1: 192
3: 49152
3,2:
- 1: 4369
- 2: 49344
+ 2: 4369
+ 1: 49344
3,3:
- 1: 4369
- 2: 192
+ 2: 4369
+ 1: 192
4: 49152
3,-1:
0: 65280
- 1: 7
+ 2: 7
3,4:
- 1: 61713
+ 2: 61713
5: 192
4,0:
- 1: 17520
- 2: 4096
+ 2: 17520
+ 1: 4096
4,1:
- 2: 16
+ 1: 16
3: 4096
- 1: 17476
+ 2: 17476
4,2:
- 2: 4112
- 1: 17476
+ 1: 4112
+ 2: 17476
4,3:
- 2: 16
+ 1: 16
4: 4096
- 1: 17476
+ 2: 17476
-4,0:
0: 65534
-5,0:
@@ -3757,68 +3836,68 @@ entities:
-1,4:
0: 63743
0,-4:
- 1: 4369
+ 2: 4369
0: 52428
0,-5:
- 1: 4383
+ 2: 4383
0: 52224
-1,-4:
0: 52428
- 1: 12288
+ 2: 12288
0,-3:
- 1: 4369
+ 2: 4369
0: 52428
-1,-3:
0: 65484
0,-2:
- 1: 1
+ 2: 1
0: 64540
-1,-2:
0: 30719
1,-4:
0: 4561
- 2: 52224
+ 1: 52224
1,-3:
0: 61905
- 2: 12
+ 1: 12
1,-2:
0: 65391
1,-5:
0: 65280
- 1: 15
+ 2: 15
2,-4:
0: 57564
- 2: 4352
+ 1: 4352
2,-3:
- 2: 1
+ 1: 1
0: 64720
2,-2:
0: 15
- 2: 26112
+ 1: 26112
2,-5:
0: 65280
- 1: 15
+ 2: 15
3,-4:
0: 13107
- 1: 34952
+ 2: 34952
3,-3:
0: 13107
- 1: 34952
+ 2: 34952
3,-2:
0: 3
- 1: 32648
+ 2: 32648
3,-5:
0: 13056
- 1: 34959
+ 2: 34959
4,-4:
- 1: 273
+ 2: 273
4,-1:
0: 65484
-8,0:
- 1: 4096
+ 2: 4096
0: 49356
-9,0:
- 1: 61713
+ 2: 61713
-8,1:
0: 3548
-9,1:
@@ -3862,209 +3941,209 @@ entities:
-5,4:
0: 61627
-8,-4:
- 1: 10383
+ 2: 10383
0: 32816
-8,-5:
0: 12336
- 1: 34959
+ 2: 34959
-9,-4:
- 1: 15
+ 2: 15
0: 240
-8,-3:
- 1: 3
+ 2: 3
0: 51336
-9,-3:
- 1: 34959
+ 2: 34959
0: 13056
-8,-2:
- 1: 1
+ 2: 1
0: 52236
-9,-2:
- 1: 34952
+ 2: 34952
0: 13107
-8,-1:
- 1: 1
+ 2: 1
0: 3276
-9,-1:
- 1: 4376
+ 2: 4376
-7,-4:
- 1: 43791
+ 2: 43791
0: 224
-7,-3:
0: 4128
- 1: 17486
+ 2: 17486
-7,-2:
0: 61713
- 1: 196
+ 2: 196
-7,-5:
0: 57568
- 1: 2063
+ 2: 2063
-6,-4:
- 1: 15
+ 2: 15
0: 16
-6,-3:
- 1: 15
+ 2: 15
-6,-2:
- 1: 62
+ 2: 62
0: 47104
-6,-5:
0: 4112
- 1: 15
+ 2: 15
-5,-4:
- 1: 17477
+ 2: 17477
0: 34952
-5,-3:
- 1: 26215
+ 2: 26215
0: 34952
-5,-2:
- 1: 7
+ 2: 7
0: 65288
-5,-5:
- 1: 17479
+ 2: 17479
0: 34952
-4,-4:
0: 37137
- 1: 26760
+ 2: 26760
-4,-3:
0: 65297
- 1: 136
+ 2: 136
-4,-2:
0: 41711
-4,-5:
0: 4369
- 1: 59528
+ 2: 59528
-3,-4:
- 1: 63714
+ 2: 63714
0: 12
-3,-3:
0: 65280
- 1: 136
+ 2: 136
-3,-2:
0: 61695
-3,-5:
- 1: 13032
+ 2: 13032
0: 52224
-2,-4:
0: 32769
- 1: 30906
+ 2: 30906
-2,-3:
0: 65280
- 1: 136
+ 2: 136
-2,-2:
0: 47359
-2,-5:
0: 4352
- 1: 60088
+ 2: 60088
-1,-1:
0: 1911
-1,-5:
0: 52428
- 1: 12288
+ 2: 12288
-4,-8:
- 1: 3840
+ 2: 3840
-5,-8:
- 1: 35908
+ 2: 35908
-5,-7:
- 1: 19531
+ 2: 19531
0: 32768
-4,-7:
- 1: 3840
+ 2: 3840
0: 61440
-4,-6:
0: 37151
- 1: 26752
+ 2: 26752
-5,-6:
0: 34952
- 1: 17476
+ 2: 17476
-3,-8:
- 1: 3840
+ 2: 3840
-3,-7:
- 1: 3968
+ 2: 3968
0: 61440
-3,-6:
0: 15
- 1: 63616
+ 2: 63616
-2,-8:
- 1: 3840
+ 2: 3840
-2,-7:
- 1: 3840
+ 2: 3840
0: 61440
-2,-6:
0: 32783
- 1: 30848
+ 2: 30848
-1,-8:
- 1: 3840
+ 2: 3840
-1,-7:
- 1: 3840
+ 2: 3840
0: 61440
-1,-6:
0: 52431
- 1: 12288
+ 2: 12288
0,-8:
- 1: 4352
+ 2: 4352
0,-7:
- 1: 4369
+ 2: 4369
0,-6:
- 1: 62259
+ 2: 62259
-8,-8:
0: 12288
- 1: 34816
+ 2: 34816
-8,-7:
- 1: 34959
+ 2: 34959
0: 12336
-9,-8:
0: 61440
- 1: 2184
+ 2: 2184
-9,-7:
- 1: 15
+ 2: 15
0: 61680
-8,-6:
- 1: 34959
+ 2: 34959
0: 12336
-9,-6:
- 1: 15
+ 2: 15
0: 61680
-9,-5:
- 1: 15
+ 2: 15
0: 61680
-7,-7:
- 1: 2063
+ 2: 2063
0: 57568
-7,-6:
- 1: 2063
+ 2: 2063
0: 57568
-7,-8:
0: 57344
-6,-8:
0: 4096
-6,-7:
- 1: 15
+ 2: 15
0: 4112
-6,-6:
- 1: 1
+ 2: 1
0: 4112
-5,-9:
- 1: 28672
+ 2: 28672
1,-6:
- 1: 29824
+ 2: 29824
1,-8:
- 1: 8192
+ 2: 8192
1,-7:
- 1: 3074
+ 2: 3074
2,-7:
- 1: 3840
+ 2: 3840
2,-6:
- 1: 240
+ 2: 240
3,-7:
- 1: 3840
+ 2: 3840
3,-6:
- 1: 240
+ 2: 240
4,-7:
- 1: 4352
+ 2: 4352
4,-6:
- 1: 4369
+ 2: 4369
4,-5:
- 1: 4369
+ 2: 4369
-4,5:
0: 28927
-5,5:
@@ -4193,7 +4272,7 @@ entities:
0: 36792
-12,-1:
0: 56704
- 1: 2
+ 2: 2
-13,0:
0: 36856
-12,1:
@@ -4214,7 +4293,7 @@ entities:
0: 62207
-11,-1:
0: 65280
- 1: 4
+ 2: 4
-10,0:
0: 10086
-10,2:
@@ -4229,12 +4308,12 @@ entities:
0: 65535
1,6:
0: 49392
- 1: 4096
+ 2: 4096
1,7:
- 1: 4113
+ 2: 4113
0: 49356
1,8:
- 1: 17
+ 2: 17
0: 45260
2,5:
0: 30583
@@ -4254,7 +4333,7 @@ entities:
0: 63675
4,4:
5: 16
- 1: 29764
+ 2: 29764
4,5:
0: 4080
4,6:
@@ -4295,7 +4374,7 @@ entities:
0: 26127
7,-1:
0: 62208
- 1: 15
+ 2: 15
8,0:
0: 48063
8,1:
@@ -4326,7 +4405,7 @@ entities:
0: 65520
7,5:
0: 4607
- 1: 49152
+ 2: 49152
7,6:
0: 24593
7,7:
@@ -4334,58 +4413,58 @@ entities:
7,8:
0: 65535
8,5:
- 1: 12834
+ 2: 12834
8,6:
- 1: 36608
+ 2: 36608
8,7:
- 1: 18319
+ 2: 18319
-12,-3:
- 1: 8751
+ 2: 8751
-13,-3:
- 1: 15
+ 2: 15
-13,-1:
0: 56704
-12,-4:
- 1: 8738
+ 2: 8738
-12,-5:
- 1: 57344
+ 2: 57344
-12,-2:
- 1: 8738
+ 2: 8738
-11,-3:
- 1: 15
+ 2: 15
-11,-4:
- 1: 34952
+ 2: 34952
-11,-5:
- 1: 63624
+ 2: 63624
-10,-3:
- 1: 15
+ 2: 15
0: 65280
-10,-2:
0: 30463
-10,-4:
- 1: 12
+ 2: 12
0: 192
-10,-5:
0: 49344
- 1: 15
+ 2: 15
-11,-8:
- 1: 34952
+ 2: 34952
-11,-9:
- 1: 32768
+ 2: 32768
-11,-7:
- 1: 34952
+ 2: 34952
-10,-7:
- 1: 15
+ 2: 15
0: 49344
-11,-6:
- 1: 34952
+ 2: 34952
-10,-8:
0: 49152
-10,-6:
- 1: 12
+ 2: 12
0: 49344
-9,-9:
- 1: 61440
+ 2: 61440
-16,0:
0: 29631
-16,-1:
@@ -4474,7 +4553,7 @@ entities:
0: 61695
4,12:
0: 241
- 1: 28672
+ 2: 28672
5,9:
0: 24695
5,10:
@@ -4491,7 +4570,7 @@ entities:
0: 221
7,9:
0: 12351
- 1: 2048
+ 2: 2048
7,10:
0: 12343
7,11:
@@ -4499,7 +4578,7 @@ entities:
7,12:
0: 51
8,9:
- 1: 996
+ 2: 996
-17,8:
0: 62574
-16,9:
@@ -4586,18 +4665,18 @@ entities:
0: 61183
-21,4:
0: 32768
- 1: 112
+ 2: 112
-21,5:
0: 136
- 1: 58112
+ 2: 58112
-20,6:
- 1: 2240
+ 2: 2240
-19,4:
0: 4383
- 2: 17408
+ 1: 17408
-19,5:
0: 21777
- 2: 4
+ 1: 4
-19,7:
0: 65535
-19,3:
@@ -4605,7 +4684,7 @@ entities:
-19,8:
0: 51455
-19,6:
- 1: 544
+ 2: 544
-18,4:
0: 65327
-18,5:
@@ -4634,10 +4713,10 @@ entities:
0: 53196
-19,10:
0: 52431
- 1: 4352
+ 2: 4352
-19,11:
0: 53196
- 1: 1
+ 2: 1
-19,12:
0: 52431
-18,9:
@@ -4658,20 +4737,20 @@ entities:
0: 61678
-21,0:
0: 52231
- 1: 256
+ 2: 256
-20,1:
0: 65535
-21,1:
0: 52428
- 1: 256
+ 2: 256
-20,2:
0: 65535
-21,2:
0: 3276
- 1: 256
+ 2: 256
-21,3:
0: 61440
- 1: 112
+ 2: 112
-19,0:
0: 30479
-19,1:
@@ -4774,7 +4853,7 @@ entities:
0: 4095
3,12:
0: 143
- 1: 57856
+ 2: 57856
-12,13:
6: 1
0: 65484
@@ -4948,22 +5027,22 @@ entities:
-17,18:
0: 14779
-16,19:
- 1: 3073
+ 2: 3073
0: 768
-17,19:
- 1: 8
+ 2: 8
0: 16179
-16,20:
- 1: 8754
+ 2: 8754
0: 34952
-15,17:
0: 12272
-15,18:
0: 4095
-15,19:
- 1: 7953
+ 2: 7953
-15,20:
- 1: 4369
+ 2: 4369
0: 43690
-14,16:
0: 30576
@@ -4972,18 +5051,18 @@ entities:
-14,18:
0: 4095
-14,19:
- 1: 7953
+ 2: 7953
-14,20:
- 1: 4369
+ 2: 4369
0: 43690
-13,17:
0: 4084
-13,19:
- 1: 7953
+ 2: 7953
-13,18:
0: 3822
-13,20:
- 1: 4369
+ 2: 4369
0: 43690
-12,16:
0: 56784
@@ -4991,13 +5070,13 @@ entities:
0: 53232
-12,18:
0: 285
- 1: 17408
+ 2: 17408
-12,19:
- 1: 40772
+ 2: 40772
-20,16:
0: 4096
-20,17:
- 0: 36863
+ 0: 53247
-21,17:
0: 36863
-20,18:
@@ -5005,35 +5084,41 @@ entities:
-21,18:
0: 65535
-20,19:
- 0: 4381
- 1: 49376
+ 0: 56605
+ 2: 224
-21,19:
0: 34831
+ -20,20:
+ 0: 204
+ 2: 256
-19,17:
- 0: 4095
+ 0: 40959
-19,18:
- 0: 55773
+ 0: 56797
-19,19:
- 0: 2189
- 1: 12336
+ 0: 40909
+ 2: 48
-19,20:
- 1: 3908
+ 0: 52445
-18,17:
- 0: 52733
+ 0: 40445
-18,18:
- 0: 45311
+ 0: 46011
-18,19:
0: 35771
+ -18,20:
+ 0: 48115
-17,20:
- 1: 3976
+ 2: 2184
+ 0: 13104
-12,20:
- 1: 39321
+ 2: 39321
0: 8738
-11,17:
0: 65520
-11,18:
0: 15
- 1: 512
+ 2: 512
-10,17:
0: 26238
-10,18:
@@ -5046,25 +5131,25 @@ entities:
0: 57535
-8,18:
0: 7
- 1: 58880
+ 2: 58880
4,13:
- 1: 30583
+ 2: 30583
3,13:
- 1: 64652
+ 2: 64652
0: 112
4,14:
- 1: 30583
+ 2: 30583
3,14:
- 1: 64652
+ 2: 64652
0: 112
4,15:
- 1: 1911
+ 2: 1911
3,15:
- 1: 15
+ 2: 15
0: 30464
4,16:
0: 7
- 1: 4352
+ 2: 4352
5,12:
0: 240
0,16:
@@ -5124,9 +5209,9 @@ entities:
3,19:
0: 4095
4,17:
- 1: 4369
+ 2: 4369
4,18:
- 1: 1
+ 2: 1
0: 13056
4,19:
0: 819
@@ -5140,20 +5225,20 @@ entities:
0: 65535
-4,19:
0: 8738
- 1: 23944
+ 2: 23944
-5,19:
- 1: 2288
+ 2: 2288
-4,20:
- 1: 54613
+ 2: 54613
0: 8738
-3,17:
0: 3838
-3,18:
0: 4095
-3,19:
- 1: 136
+ 2: 136
-2,19:
- 1: 48
+ 2: 48
0: 34952
-2,17:
0: 58982
@@ -5161,7 +5246,7 @@ entities:
0: 44686
-2,20:
0: 2184
- 1: 12288
+ 2: 12288
-1,20:
0: 36863
-7,17:
@@ -5169,24 +5254,24 @@ entities:
-7,18:
0: 52991
-8,19:
- 1: 34952
+ 2: 34952
-7,19:
0: 4369
- 1: 224
+ 2: 224
-8,20:
- 1: 34952
+ 2: 34952
-7,20:
0: 4369
- 1: 57344
+ 2: 57344
-6,17:
0: 65535
-6,18:
0: 65535
-6,19:
- 1: 43696
+ 2: 43696
0: 17472
-6,20:
- 1: 47786
+ 2: 47786
0: 17476
-24,13:
0: 51200
@@ -5201,252 +5286,252 @@ entities:
-22,14:
0: 47
-24,18:
- 1: 36744
+ 2: 36744
-25,18:
- 1: 2048
+ 2: 2048
-24,17:
0: 2248
-23,17:
0: 3067
-23,18:
- 1: 1792
+ 2: 1792
-24,19:
- 1: 136
+ 2: 136
-23,19:
- 1: 112
+ 2: 112
-22,17:
0: 4095
-22,18:
0: 30591
-22,19:
0: 7
- 1: 34816
+ 2: 34816
-22,16:
0: 8192
-22,20:
- 1: 2184
+ 2: 2184
-4,21:
- 1: 5
+ 2: 5
0: 8738
-5,20:
- 1: 61440
+ 2: 61440
-5,21:
- 1: 15
+ 2: 15
0: 65280
-4,22:
0: 13107
- 1: 8
+ 2: 8
-5,22:
0: 48015
-4,23:
- 1: 4224
+ 2: 4224
-4,24:
- 1: 287
+ 2: 287
-3,20:
- 1: 61440
+ 2: 61440
-3,22:
- 1: 4369
+ 2: 4369
-3,23:
- 1: 4369
+ 2: 4369
-3,21:
- 1: 4369
+ 2: 4369
-3,24:
- 1: 1
+ 2: 1
-1,21:
0: 2184
0,21:
0: 546
- 1: 8
+ 2: 8
1,21:
- 1: 3
+ 2: 3
0: 2184
2,21:
0: 546
-10,-9:
- 1: 61440
+ 2: 61440
-8,-9:
- 1: 61440
+ 2: 61440
-7,-9:
- 1: 61440
+ 2: 61440
-6,-9:
- 1: 61440
+ 2: 61440
8,4:
- 1: 58432
+ 2: 58432
8,8:
- 1: 17476
+ 2: 17476
9,4:
- 1: 61440
+ 2: 61440
9,6:
0: 1365
- 1: 8738
+ 2: 8738
9,7:
- 1: 8751
+ 2: 8751
0: 21760
9,3:
0: 65423
9,5:
0: 21840
- 1: 8736
+ 2: 8736
9,8:
0: 21845
- 1: 8738
+ 2: 8738
10,4:
- 1: 61440
+ 2: 61440
10,7:
- 1: 8751
+ 2: 8751
0: 21760
10,3:
0: 30566
10,5:
0: 21840
- 1: 8738
+ 2: 8738
10,6:
0: 1365
- 1: 8738
+ 2: 8738
10,8:
0: 21845
- 1: 8738
+ 2: 8738
11,4:
- 1: 61986
+ 2: 61986
11,7:
- 1: 8751
+ 2: 8751
0: 21760
11,5:
0: 21840
- 1: 8736
+ 2: 8736
11,6:
0: 1365
- 1: 8738
+ 2: 8738
11,8:
0: 21845
- 1: 8738
+ 2: 8738
11,3:
- 1: 8738
+ 2: 8738
12,4:
- 1: 61440
+ 2: 61440
12,7:
- 1: 8751
+ 2: 8751
0: 21760
12,5:
0: 21840
- 1: 8736
+ 2: 8736
12,6:
0: 1365
- 1: 10786
+ 2: 10786
12,8:
0: 21845
- 1: 8866
+ 2: 8866
13,4:
- 1: 12288
+ 2: 12288
13,6:
- 1: 18210
+ 2: 18210
13,7:
- 1: 5957
+ 2: 5957
13,8:
- 1: 4369
+ 2: 4369
13,5:
- 1: 8738
+ 2: 8738
9,9:
- 1: 240
+ 2: 240
10,9:
- 1: 242
+ 2: 242
11,9:
- 1: 240
+ 2: 240
12,9:
- 1: 240
+ 2: 240
13,9:
- 1: 17
+ 2: 17
-20,-3:
- 1: 29772
+ 2: 29772
-21,-3:
- 1: 61440
+ 2: 61440
-20,-2:
0: 60928
-19,-3:
- 1: 17487
+ 2: 17487
-19,-2:
0: 63232
- 1: 4
+ 2: 4
-18,-3:
- 1: 15
+ 2: 15
-18,-2:
0: 65520
-17,-3:
- 1: 15
+ 2: 15
-17,-2:
0: 30576
-16,-3:
- 1: 34959
+ 2: 34959
-16,-2:
0: 65520
-15,-3:
- 1: 15
+ 2: 15
-15,-2:
0: 61712
-14,-3:
- 1: 15
+ 2: 15
-16,21:
- 1: 8802
+ 2: 8802
0: 34952
-16,22:
- 1: 8738
+ 2: 8738
0: 136
-16,23:
- 1: 226
+ 2: 226
-15,21:
- 1: 4433
+ 2: 4433
0: 43690
-15,22:
- 1: 61713
+ 2: 61713
0: 170
-15,23:
- 1: 240
+ 2: 240
-14,21:
- 1: 4433
+ 2: 4433
0: 43690
-14,22:
- 1: 61713
+ 2: 61713
0: 170
-14,23:
- 1: 61780
+ 2: 61780
-13,21:
- 1: 4433
+ 2: 4433
0: 43690
-13,22:
- 1: 61713
+ 2: 61713
0: 170
-13,23:
- 1: 4592
+ 2: 4592
-12,21:
- 1: 39385
+ 2: 39385
0: 8738
-12,22:
- 1: 39321
+ 2: 39321
0: 34
-12,23:
- 1: 248
+ 2: 248
-8,21:
- 1: 12734
+ 2: 12734
-8,22:
- 1: 12561
+ 2: 12561
0: 34952
-9,21:
- 1: 61440
+ 2: 61440
-8,23:
- 1: 29969
+ 2: 29969
-9,23:
- 1: 15
+ 2: 15
-8,24:
- 1: 3140
+ 2: 3140
-7,21:
0: 63505
- 1: 14
+ 2: 14
-7,22:
0: 47931
-7,23:
0: 136
-6,21:
- 1: 11
+ 2: 11
0: 65284
-6,22:
0: 24399
@@ -5455,17 +5540,17 @@ entities:
-5,23:
0: 307
-7,24:
- 1: 3840
+ 2: 3840
-6,24:
- 1: 3904
+ 2: 3904
-5,24:
- 1: 3840
- -20,20:
- 1: 3872
+ 2: 3840
-21,20:
- 1: 3907
- -18,20:
- 1: 3904
+ 2: 12099
+ -19,21:
+ 0: 12
+ -18,21:
+ 0: 3
4,-3:
0: 61152
4,-2:
@@ -5475,98 +5560,98 @@ entities:
5,-2:
0: 26208
6,-2:
- 1: 15
+ 2: 15
7,-2:
- 1: 22289
+ 2: 22289
8,-1:
- 1: 15
+ 2: 15
0: 45056
-11,21:
- 1: 2288
+ 2: 2288
-11,23:
- 1: 15
+ 2: 15
-10,21:
- 1: 36608
+ 2: 36608
-10,23:
- 1: 15
+ 2: 15
-23,-2:
- 1: 17600
+ 2: 17600
-23,-1:
- 1: 17476
+ 2: 17476
-23,0:
- 1: 12100
+ 2: 12100
-22,-2:
- 1: 240
+ 2: 240
-22,-1:
0: 52224
-22,0:
0: 12
- 1: 12032
+ 2: 12032
-21,-2:
- 1: 4369
+ 2: 4369
-21,-1:
0: 30464
- 1: 1
+ 2: 1
-24,0:
- 1: 12032
+ 2: 12032
-25,0:
- 1: 12032
+ 2: 12032
-24,1:
0: 21845
- 1: 10786
+ 2: 10786
-25,1:
- 1: 10786
+ 2: 10786
0: 21845
-24,2:
0: 21845
- 1: 10786
+ 2: 10786
-25,2:
- 1: 10786
+ 2: 10786
0: 21845
-24,3:
0: 85
- 1: 61986
+ 2: 61986
-25,3:
- 1: 61986
+ 2: 61986
0: 85
-24,4:
- 1: 242
+ 2: 242
-23,1:
0: 21845
- 1: 10786
+ 2: 10786
-23,2:
0: 21845
- 1: 10786
+ 2: 10786
-23,3:
- 1: 61986
+ 2: 61986
0: 85
-23,4:
- 1: 242
+ 2: 242
-22,1:
0: 21845
- 1: 10786
+ 2: 10786
-22,2:
0: 21845
- 1: 10786
+ 2: 10786
-22,3:
- 1: 62114
+ 2: 62114
0: 85
-22,4:
- 1: 35058
+ 2: 35058
-25,4:
- 1: 242
+ 2: 242
-22,5:
- 1: 2184
+ 2: 2184
-26,0:
- 1: 11776
+ 2: 11776
-26,1:
- 1: 11810
+ 2: 11810
-26,2:
- 1: 11810
+ 2: 11810
-26,3:
- 1: 41506
+ 2: 41506
-26,4:
- 1: 226
+ 2: 226
9,0:
0: 65535
9,1:
@@ -5575,7 +5660,7 @@ entities:
0: 56781
9,-1:
0: 61440
- 1: 15
+ 2: 15
10,0:
0: 21504
10,2:
@@ -5583,15 +5668,17 @@ entities:
10,1:
0: 26212
11,0:
- 1: 8738
+ 2: 8738
11,-1:
- 1: 12288
+ 2: 12288
11,1:
- 1: 8738
+ 2: 8738
11,2:
- 1: 8738
+ 2: 8738
+ -21,21:
+ 2: 2
10,-1:
- 1: 50247
+ 2: 50247
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -5609,7 +5696,7 @@ entities:
- 0
- 0
- volume: 2500
- immutable: True
+ temperature: 293.15
moles:
- 0
- 0
@@ -5624,7 +5711,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ immutable: True
moles:
- 0
- 0
@@ -5704,6 +5791,18 @@ entities:
- type: NavMap
- type: BecomesStation
id: Loop
+ - uid: 18935
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
- proto: AcousticGuitarInstrument
entities:
- uid: 3
@@ -5744,6 +5843,33 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 12
+ - uid: 6961
+ mapInit: true
+ paused: true
+ components:
+ - type: Transform
+ parent: 6942
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 6942
+ - uid: 7647
+ mapInit: true
+ paused: true
+ components:
+ - type: Transform
+ parent: 6971
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 6971
+ - uid: 18804
+ mapInit: true
+ paused: true
+ components:
+ - type: Transform
+ parent: 18802
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 18802
- proto: ActionToggleJetpack
entities:
- uid: 8
@@ -5767,6 +5893,33 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 12
+ - uid: 6960
+ mapInit: true
+ paused: true
+ components:
+ - type: Transform
+ parent: 6942
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 6942
+ - uid: 7055
+ mapInit: true
+ paused: true
+ components:
+ - type: Transform
+ parent: 6971
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 6971
+ - uid: 18803
+ mapInit: true
+ paused: true
+ components:
+ - type: Transform
+ parent: 18802
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 18802
- proto: ActionToggleLight
entities:
- uid: 16
@@ -5917,7 +6070,6 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 8044
- 374
- 10407
- 10616
@@ -6230,6 +6382,8 @@ entities:
- 8260
- 8259
- 8056
+ - 18876
+ - 18882
- uid: 50
components:
- type: Transform
@@ -6552,8 +6706,9 @@ entities:
- 8076
- 8097
- 10553
- - 8044
- 8354
+ - 19066
+ - 19062
- uid: 69
components:
- type: Transform
@@ -7466,8 +7621,47 @@ entities:
- 18909
- 18910
- 18888
- - 18887
- - 18911
+ - 18876
+ - 18882
+ - uid: 19021
+ components:
+ - type: Transform
+ pos: -70.5,79.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 19103
+ - 19072
+ - 19090
+ - 19063
+ - 19064
+ - 19062
+ - 19066
+ - uid: 19106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,77.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 19098
+ - 19086
+ - 19105
+ - 19064
+ - uid: 19107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,81.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 19102
+ - 19085
+ - 19104
+ - 19063
+ - 19065
- proto: AirCanister
entities:
- uid: 119
@@ -7578,10 +7772,32 @@ entities:
parent: 2
- proto: AirlockBlueShieldGlassLocked
entities:
- - uid: 18793
+ - uid: 18847
components:
- type: Transform
- pos: -71.5,34.5
+ pos: -72.5,71.5
+ parent: 2
+- proto: AirlockBlueShieldLocked
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,78.5
+ parent: 2
+ - type: AccessReader
+ access:
+ - - BlueShieldEnsign
+ - uid: 18922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -69.5,81.5
+ parent: 2
+ - uid: 18952
+ components:
+ - type: Transform
+ pos: -72.5,79.5
parent: 2
- proto: AirlockBrigGlassLocked
entities:
@@ -7687,13 +7903,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -13.5,73.5
parent: 2
-- proto: AirlockCommandLocked
- entities:
- - uid: 153
- components:
- - type: Transform
- pos: -76.5,71.5
- parent: 2
- proto: AirlockDetectiveLocked
entities:
- uid: 154
@@ -7711,7 +7920,7 @@ entities:
pos: -30.5,13.5
parent: 2
- type: Door
- secondsUntilStateChange: -102522.26
+ secondsUntilStateChange: -108114.5
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -7896,7 +8105,7 @@ entities:
pos: 9.5,-12.5
parent: 2
- type: Door
- secondsUntilStateChange: -42006.508
+ secondsUntilStateChange: -47598.754
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -8351,6 +8560,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -70.5,57.5
parent: 2
+ - uid: 13094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,71.5
+ parent: 2
- proto: AirlockHeadOfPersonnelGlassLocked
entities:
- uid: 241
@@ -8381,9 +8596,10 @@ entities:
parent: 2
- proto: AirlockHeadOfSecurityLocked
entities:
- - uid: 245
+ - uid: 1142
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -39.5,39.5
parent: 2
- proto: AirlockHydroponicsLocked
@@ -10246,6 +10462,33 @@ entities:
- type: DeviceNetwork
deviceLists:
- 18855
+ - uid: 19103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,74.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19021
+ - uid: 19104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,82.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19107
+ - uid: 19105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,79.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19106
- proto: AltarFangs
entities:
- uid: 479
@@ -10678,6 +10921,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,29.5
parent: 2
+ - uid: 19020
+ components:
+ - type: Transform
+ pos: -73.5,79.5
+ parent: 2
- proto: APCElectronics
entities:
- uid: 554
@@ -11633,6 +11881,11 @@ entities:
- type: Transform
pos: -70.5,26.5
parent: 2
+ - uid: 10872
+ components:
+ - type: Transform
+ pos: -73.5,84.5
+ parent: 2
- uid: 14903
components:
- type: Transform
@@ -11643,6 +11896,26 @@ entities:
- type: Transform
pos: -11.5,46.5
parent: 2
+ - uid: 18818
+ components:
+ - type: Transform
+ pos: -73.5,83.5
+ parent: 2
+ - uid: 18841
+ components:
+ - type: Transform
+ pos: -73.5,82.5
+ parent: 2
+ - uid: 18965
+ components:
+ - type: Transform
+ pos: -73.5,81.5
+ parent: 2
+ - uid: 18966
+ components:
+ - type: Transform
+ pos: -73.5,80.5
+ parent: 2
- proto: BedsheetBrigmedic
entities:
- uid: 734
@@ -11728,6 +12001,33 @@ entities:
- type: Transform
pos: -83.5,76.5
parent: 2
+- proto: BedsheetSpawner
+ entities:
+ - uid: 18993
+ components:
+ - type: Transform
+ pos: -73.5,80.5
+ parent: 2
+ - uid: 18994
+ components:
+ - type: Transform
+ pos: -73.5,81.5
+ parent: 2
+ - uid: 18995
+ components:
+ - type: Transform
+ pos: -73.5,82.5
+ parent: 2
+ - uid: 18996
+ components:
+ - type: Transform
+ pos: -73.5,83.5
+ parent: 2
+ - uid: 18997
+ components:
+ - type: Transform
+ pos: -73.5,84.5
+ parent: 2
- proto: BedsheetSyndie
entities:
- uid: 18497
@@ -12385,6 +12685,21 @@ entities:
- type: Transform
pos: -21.539848,4.8032537
parent: 2
+ - uid: 18875
+ components:
+ - type: Transform
+ pos: -75.6622,28.414597
+ parent: 2
+ - uid: 18878
+ components:
+ - type: Transform
+ pos: -75.56492,28.747929
+ parent: 2
+ - uid: 18883
+ components:
+ - type: Transform
+ pos: -75.342545,28.609041
+ parent: 2
- proto: BoxFlashbang
entities:
- uid: 880
@@ -13739,21 +14054,6 @@ entities:
- type: Transform
pos: -13.5,34.5
parent: 2
- - uid: 1142
- components:
- - type: Transform
- pos: -70.5,73.5
- parent: 2
- - uid: 1143
- components:
- - type: Transform
- pos: -71.5,73.5
- parent: 2
- - uid: 1144
- components:
- - type: Transform
- pos: -72.5,73.5
- parent: 2
- uid: 1145
components:
- type: Transform
@@ -13904,11 +14204,6 @@ entities:
- type: Transform
pos: -48.5,1.5
parent: 2
- - uid: 1175
- components:
- - type: Transform
- pos: -69.5,73.5
- parent: 2
- uid: 1176
components:
- type: Transform
@@ -14194,11 +14489,6 @@ entities:
- type: Transform
pos: -67.5,73.5
parent: 2
- - uid: 1233
- components:
- - type: Transform
- pos: -68.5,73.5
- parent: 2
- uid: 1234
components:
- type: Transform
@@ -24634,6 +24924,21 @@ entities:
- type: Transform
pos: -36.5,33.5
parent: 2
+ - uid: 6734
+ components:
+ - type: Transform
+ pos: -74.5,33.5
+ parent: 2
+ - uid: 11627
+ components:
+ - type: Transform
+ pos: -72.5,33.5
+ parent: 2
+ - uid: 11628
+ components:
+ - type: Transform
+ pos: -73.5,33.5
+ parent: 2
- uid: 11930
components:
- type: Transform
@@ -25479,6 +25784,171 @@ entities:
- type: Transform
pos: -71.5,33.5
parent: 2
+ - uid: 19026
+ components:
+ - type: Transform
+ pos: -73.5,79.5
+ parent: 2
+ - uid: 19027
+ components:
+ - type: Transform
+ pos: -73.5,78.5
+ parent: 2
+ - uid: 19028
+ components:
+ - type: Transform
+ pos: -74.5,78.5
+ parent: 2
+ - uid: 19029
+ components:
+ - type: Transform
+ pos: -75.5,78.5
+ parent: 2
+ - uid: 19030
+ components:
+ - type: Transform
+ pos: -76.5,78.5
+ parent: 2
+ - uid: 19031
+ components:
+ - type: Transform
+ pos: -76.5,79.5
+ parent: 2
+ - uid: 19032
+ components:
+ - type: Transform
+ pos: -76.5,81.5
+ parent: 2
+ - uid: 19033
+ components:
+ - type: Transform
+ pos: -76.5,80.5
+ parent: 2
+ - uid: 19034
+ components:
+ - type: Transform
+ pos: -72.5,79.5
+ parent: 2
+ - uid: 19035
+ components:
+ - type: Transform
+ pos: -72.5,80.5
+ parent: 2
+ - uid: 19036
+ components:
+ - type: Transform
+ pos: -72.5,81.5
+ parent: 2
+ - uid: 19037
+ components:
+ - type: Transform
+ pos: -71.5,81.5
+ parent: 2
+ - uid: 19038
+ components:
+ - type: Transform
+ pos: -69.5,81.5
+ parent: 2
+ - uid: 19039
+ components:
+ - type: Transform
+ pos: -68.5,81.5
+ parent: 2
+ - uid: 19040
+ components:
+ - type: Transform
+ pos: -67.5,81.5
+ parent: 2
+ - uid: 19041
+ components:
+ - type: Transform
+ pos: -70.5,81.5
+ parent: 2
+ - uid: 19042
+ components:
+ - type: Transform
+ pos: -71.5,82.5
+ parent: 2
+ - uid: 19043
+ components:
+ - type: Transform
+ pos: -71.5,83.5
+ parent: 2
+ - uid: 19044
+ components:
+ - type: Transform
+ pos: -73.5,77.5
+ parent: 2
+ - uid: 19045
+ components:
+ - type: Transform
+ pos: -73.5,76.5
+ parent: 2
+ - uid: 19046
+ components:
+ - type: Transform
+ pos: -73.5,74.5
+ parent: 2
+ - uid: 19047
+ components:
+ - type: Transform
+ pos: -73.5,73.5
+ parent: 2
+ - uid: 19048
+ components:
+ - type: Transform
+ pos: -73.5,72.5
+ parent: 2
+ - uid: 19049
+ components:
+ - type: Transform
+ pos: -73.5,75.5
+ parent: 2
+ - uid: 19050
+ components:
+ - type: Transform
+ pos: -72.5,72.5
+ parent: 2
+ - uid: 19051
+ components:
+ - type: Transform
+ pos: -71.5,72.5
+ parent: 2
+ - uid: 19052
+ components:
+ - type: Transform
+ pos: -71.5,79.5
+ parent: 2
+ - uid: 19053
+ components:
+ - type: Transform
+ pos: -71.5,78.5
+ parent: 2
+ - uid: 19054
+ components:
+ - type: Transform
+ pos: -72.5,75.5
+ parent: 2
+ - uid: 19055
+ components:
+ - type: Transform
+ pos: -71.5,75.5
+ parent: 2
+ - uid: 19056
+ components:
+ - type: Transform
+ pos: -76.5,82.5
+ parent: 2
+ - uid: 19057
+ components:
+ - type: Transform
+ pos: -75.5,82.5
+ parent: 2
+ - uid: 19058
+ components:
+ - type: Transform
+ pos: -77.5,82.5
+ parent: 2
- proto: CableApcStack
entities:
- uid: 3349
@@ -31506,6 +31976,26 @@ entities:
parent: 2
- proto: CableMV
entities:
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: -69.5,76.5
+ parent: 2
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: -69.5,78.5
+ parent: 2
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: -69.5,77.5
+ parent: 2
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: -69.5,75.5
+ parent: 2
- uid: 1931
components:
- type: Transform
@@ -35911,11 +36401,6 @@ entities:
- type: Transform
pos: -2.5,45.5
parent: 2
- - uid: 17746
- components:
- - type: Transform
- pos: -69.5,34.5
- parent: 2
- uid: 17820
components:
- type: Transform
@@ -35966,36 +36451,11 @@ entities:
- type: Transform
pos: -38.5,29.5
parent: 2
- - uid: 18148
- components:
- - type: Transform
- pos: -70.5,34.5
- parent: 2
- - uid: 18195
- components:
- - type: Transform
- pos: -71.5,34.5
- parent: 2
- uid: 18723
components:
- type: Transform
pos: -4.5,51.5
parent: 2
- - uid: 18792
- components:
- - type: Transform
- pos: -68.5,34.5
- parent: 2
- - uid: 18794
- components:
- - type: Transform
- pos: -73.5,34.5
- parent: 2
- - uid: 18798
- components:
- - type: Transform
- pos: -72.5,34.5
- parent: 2
- uid: 18856
components:
- type: Transform
@@ -36021,6 +36481,31 @@ entities:
- type: Transform
pos: -67.5,29.5
parent: 2
+ - uid: 18973
+ components:
+ - type: Transform
+ pos: -69.5,79.5
+ parent: 2
+ - uid: 19022
+ components:
+ - type: Transform
+ pos: -70.5,79.5
+ parent: 2
+ - uid: 19023
+ components:
+ - type: Transform
+ pos: -71.5,79.5
+ parent: 2
+ - uid: 19024
+ components:
+ - type: Transform
+ pos: -73.5,79.5
+ parent: 2
+ - uid: 19025
+ components:
+ - type: Transform
+ pos: -72.5,79.5
+ parent: 2
- proto: CableMVStack
entities:
- uid: 5437
@@ -36791,6 +37276,78 @@ entities:
- type: Transform
pos: -3.5,47.5
parent: 2
+ - uid: 18811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,80.5
+ parent: 2
+ - uid: 18840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,81.5
+ parent: 2
+ - uid: 18941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,78.5
+ parent: 2
+ - uid: 18942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,81.5
+ parent: 2
+ - uid: 18948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,78.5
+ parent: 2
+ - uid: 18951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,80.5
+ parent: 2
+ - uid: 18953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,79.5
+ parent: 2
+ - uid: 18954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,81.5
+ parent: 2
+ - uid: 18958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,80.5
+ parent: 2
+ - uid: 18959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,79.5
+ parent: 2
+ - uid: 18961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,79.5
+ parent: 2
+ - uid: 18962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,78.5
+ parent: 2
- proto: CarpetChapel
entities:
- uid: 5562
@@ -41138,11 +41695,6 @@ entities:
- type: Transform
pos: 26.5,49.5
parent: 2
- - uid: 6281
- components:
- - type: Transform
- pos: -73.5,73.5
- parent: 2
- uid: 6282
components:
- type: Transform
@@ -41846,11 +42398,10 @@ entities:
rot: 3.141592653589793 rad
pos: -32.5,31.5
parent: 2
- - uid: 18807
+ - uid: 17524
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,33.5
+ pos: -71.48934,72.67393
parent: 2
- proto: ChairOfficeLight
entities:
@@ -42218,16 +42769,28 @@ entities:
rot: 1.5707963267948966 rad
pos: 36.5,15.5
parent: 2
- - uid: 18809
- components:
- - type: Transform
- pos: -68.5,33.5
- parent: 2
- - uid: 18810
+ - uid: 18927
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -68.5,31.5
+ pos: -75.57889,79.64794
+ parent: 2
+ - uid: 18928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.49555,80.50963
+ parent: 2
+ - uid: 18968
+ components:
+ - type: Transform
+ pos: -70.45966,78.588844
+ parent: 2
+ - uid: 18969
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.43187,76.61662
parent: 2
- proto: CheckerBoard
entities:
@@ -43266,38 +43829,6 @@ entities:
- type: Transform
pos: -40.51986,5.581151
parent: 2
-- proto: ClothingBeltSecurityWebbingFilled
- entities:
- - uid: 18821
- components:
- - type: Transform
- pos: -73.449936,31.526964
- parent: 2
- - uid: 18822
- components:
- - type: Transform
- pos: -73.55725,30.444183
- parent: 2
- - uid: 18823
- components:
- - type: Transform
- pos: -73.60343,30.647886
- parent: 2
- - uid: 18824
- components:
- - type: Transform
- pos: -73.19485,31.61085
- parent: 2
- - uid: 18825
- components:
- - type: Transform
- pos: -73.66738,31.564552
- parent: 2
- - uid: 18826
- components:
- - type: Transform
- pos: -73.33875,30.540854
- parent: 2
- proto: ClothingBeltUtility
entities:
- uid: 6624
@@ -44018,35 +44549,35 @@ entities:
- type: Transform
pos: -64.504845,74.509155
parent: 2
- - uid: 6730
+ - uid: 8044
components:
- type: Transform
- pos: -77.617096,76.65266
+ pos: -75.729485,31.575838
parent: 2
- - uid: 6731
+ - uid: 11619
components:
- type: Transform
- pos: -77.42252,76.37488
+ pos: -75.266426,32.395283
parent: 2
- - uid: 6732
+ - uid: 17779
components:
- type: Transform
- pos: -77.23026,76.74525
+ pos: -75.588234,33.71511
parent: 2
- - uid: 6733
+ - uid: 18831
components:
- type: Transform
- pos: -75.671364,76.680435
+ pos: -75.64168,32.673058
parent: 2
- - uid: 6734
+ - uid: 18834
components:
- type: Transform
- pos: -75.47679,76.305435
+ pos: -75.31027,33.561947
parent: 2
- - uid: 6735
+ - uid: 18854
components:
- type: Transform
- pos: -75.254425,76.62488
+ pos: -75.312546,31.381393
parent: 2
- proto: ClothingShoesBootsMerc
entities:
@@ -44619,6 +45150,12 @@ entities:
parent: 2
- proto: ComputerCrewMonitoring
entities:
+ - uid: 6735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,72.5
+ parent: 2
- uid: 6774
components:
- type: Transform
@@ -44647,12 +45184,6 @@ entities:
- type: Transform
pos: -6.5,25.5
parent: 2
- - uid: 18795
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,33.5
- parent: 2
- proto: ComputerCriminalRecords
entities:
- uid: 6779
@@ -45757,26 +46288,6 @@ entities:
- type: Transform
pos: -39.5,36.5
parent: 2
- - uid: 6939
- components:
- - type: Transform
- pos: -71.5,75.5
- parent: 2
- - uid: 6940
- components:
- - type: Transform
- pos: -70.5,77.5
- parent: 2
- - uid: 6941
- components:
- - type: Transform
- pos: -72.5,78.5
- parent: 2
- - uid: 6942
- components:
- - type: Transform
- pos: -71.5,77.5
- parent: 2
- proto: CrateFreezer
entities:
- uid: 6943
@@ -45932,16 +46443,6 @@ entities:
- type: Transform
pos: 11.5,77.5
parent: 2
- - uid: 6960
- components:
- - type: Transform
- pos: -70.5,76.5
- parent: 2
- - uid: 6961
- components:
- - type: Transform
- pos: -70.5,78.5
- parent: 2
- proto: CrateHydroponicsSeeds
entities:
- uid: 6962
@@ -46052,11 +46553,6 @@ entities:
ent: null
- proto: CratePlastic
entities:
- - uid: 6971
- components:
- - type: Transform
- pos: -72.5,76.5
- parent: 2
- uid: 6972
components:
- type: Transform
@@ -46079,13 +46575,6 @@ entities:
- type: Transform
pos: -11.5,74.5
parent: 2
-- proto: CrateRodentCage
- entities:
- - uid: 6469
- components:
- - type: Transform
- pos: -15.5,70.5
- parent: 2
- proto: CrateServiceJanitorialSupplies
entities:
- uid: 6976
@@ -46532,10 +47021,10 @@ entities:
parent: 2
- proto: DefaultStationBeaconBlueShield
entities:
- - uid: 12019
+ - uid: 19108
components:
- type: Transform
- pos: -71.5,32.5
+ pos: -71.5,75.5
parent: 2
- proto: DefaultStationBeaconBotany
entities:
@@ -46690,10 +47179,10 @@ entities:
parent: 2
- proto: DefaultStationBeaconEVAStorage
entities:
- - uid: 7055
+ - uid: 11617
components:
- type: Transform
- pos: -76.5,73.5
+ pos: -72.5,31.5
parent: 2
- proto: DefaultStationBeaconGravGen
entities:
@@ -46990,17 +47479,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -16.5,41.5
parent: 2
-- proto: DefibrillatorCompact
- entities:
- - uid: 18853
+ - uid: 18990
components:
- type: Transform
- pos: -72.46595,31.519417
- parent: 2
- - uid: 18854
- components:
- - type: Transform
- pos: -71.70619,30.84349
+ pos: -71.5,79.5
parent: 2
- proto: DeskBell
entities:
@@ -47480,26 +47962,8 @@ entities:
rot: -1.5707963267948966 rad
pos: -58.5,13.5
parent: 2
- - uid: 18885
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,35.5
- parent: 2
- - uid: 18886
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,35.5
- parent: 2
- proto: DisposalJunction
entities:
- - uid: 5257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,36.5
- parent: 2
- uid: 7178
components:
- type: Transform
@@ -47729,6 +48193,12 @@ entities:
rot: 3.141592653589793 rad
pos: -14.5,15.5
parent: 2
+ - uid: 11625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,69.5
+ parent: 2
- proto: DisposalPipe
entities:
- uid: 84
@@ -50241,12 +50711,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -21.5,44.5
parent: 2
- - uid: 7647
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,69.5
- parent: 2
- uid: 7648
components:
- type: Transform
@@ -50842,6 +51306,12 @@ entities:
rot: 3.141592653589793 rad
pos: -42.5,73.5
parent: 2
+ - uid: 11623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,36.5
+ parent: 2
- uid: 11791
components:
- type: Transform
@@ -50872,16 +51342,15 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,31.5
parent: 2
- - uid: 18883
+ - uid: 19060
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,35.5
+ pos: -73.5,71.5
parent: 2
- - uid: 18884
+ - uid: 19061
components:
- type: Transform
- pos: -70.5,34.5
+ pos: -73.5,70.5
parent: 2
- proto: DisposalTrunk
entities:
@@ -51135,11 +51604,10 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,28.5
parent: 2
- - uid: 18882
+ - uid: 19059
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,33.5
+ pos: -73.5,72.5
parent: 2
- proto: DisposalUnit
entities:
@@ -51358,10 +51826,10 @@ entities:
- type: Transform
pos: -36.5,28.5
parent: 2
- - uid: 18796
+ - uid: 18974
components:
- type: Transform
- pos: -70.5,33.5
+ pos: -73.5,72.5
parent: 2
- proto: DisposalYJunction
entities:
@@ -51424,6 +51892,18 @@ entities:
- type: Transform
pos: 30.5,15.5
parent: 2
+- proto: DonkpocketBoxSpawner
+ entities:
+ - uid: 11618
+ components:
+ - type: Transform
+ pos: -75.5,75.5
+ parent: 2
+ - uid: 18992
+ components:
+ - type: Transform
+ pos: -70.5,77.5
+ parent: 2
- proto: DoubleBed
entities:
- uid: 705
@@ -51506,6 +51986,11 @@ entities:
- type: Transform
pos: -51.5,67.5
parent: 2
+ - uid: 18950
+ components:
+ - type: Transform
+ pos: -75.5,81.5
+ parent: 2
- proto: DoubleBedsheetBlack
entities:
- uid: 714
@@ -51605,6 +52090,14 @@ entities:
rot: 3.141592653589793 rad
pos: -56.5,67.5
parent: 2
+- proto: DoubleBedsheetNT
+ entities:
+ - uid: 18923
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,81.5
+ parent: 2
- proto: DoubleBedsheetQM
entities:
- uid: 754
@@ -51749,6 +52242,13 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,69.5
parent: 2
+- proto: DoubleGlassAirlockCommandLocked
+ entities:
+ - uid: 11933
+ components:
+ - type: Transform
+ pos: -72.5,34.5
+ parent: 2
- proto: DoubleGlassAirlockEngineeringLocked
entities:
- uid: 7868
@@ -51838,6 +52338,12 @@ entities:
- type: Transform
pos: -54.5,28.5
parent: 2
+ - uid: 18949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,81.5
+ parent: 2
- proto: DresserHeadOfPersonnelFilled
entities:
- uid: 7883
@@ -52105,15 +52611,15 @@ entities:
- type: Transform
pos: 37.207443,15.810227
parent: 2
- - uid: 18830
+ - uid: 18932
components:
- type: Transform
- pos: -68.37565,32.32979
+ pos: -75.766594,80.85833
parent: 2
- - uid: 18831
+ - uid: 18933
components:
- type: Transform
- pos: -68.44514,32.6909
+ pos: -75.50253,80.60833
parent: 2
- proto: DrinkIceBucket
entities:
@@ -52206,6 +52712,23 @@ entities:
- type: Transform
pos: -41.615143,55.6072
parent: 2
+- proto: DrinkWaterCup
+ entities:
+ - uid: 8974
+ components:
+ - type: Transform
+ pos: -75.220345,75.930786
+ parent: 2
+ - uid: 9703
+ components:
+ - type: Transform
+ pos: -75.34542,76.19467
+ parent: 2
+ - uid: 18837
+ components:
+ - type: Transform
+ pos: -75.58169,75.98634
+ parent: 2
- proto: DrinkWhiskeyBottleFull
entities:
- uid: 7931
@@ -52912,16 +53435,6 @@ entities:
- type: Transform
pos: -42.5,10.5
parent: 2
- - uid: 8044
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,71.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 31
- - 68
- proto: FirelockEdge
entities:
- uid: 18726
@@ -55793,24 +56306,68 @@ entities:
deviceLists:
- 18725
- 74
- - uid: 18887
+ - uid: 18876
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -71.5,34.5
parent: 2
- type: DeviceNetwork
deviceLists:
- 18855
- - uid: 18911
+ - 49
+ - uid: 18882
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -72.5,34.5
parent: 2
- type: DeviceNetwork
deviceLists:
- 18855
+ - 49
+ - uid: 19062
+ components:
+ - type: Transform
+ pos: -72.5,71.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19021
+ - 68
+ - uid: 19063
+ components:
+ - type: Transform
+ pos: -72.5,79.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19021
+ - 19107
+ - uid: 19064
+ components:
+ - type: Transform
+ pos: -74.5,78.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19021
+ - 19106
+ - uid: 19065
+ components:
+ - type: Transform
+ pos: -69.5,81.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19107
+ - uid: 19066
+ components:
+ - type: Transform
+ pos: -71.5,71.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19021
+ - 68
- proto: Fireplace
entities:
- uid: 6605
@@ -55833,6 +56390,12 @@ entities:
- type: Transform
pos: -75.5,23.5
parent: 2
+ - uid: 18926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,80.5
+ parent: 2
- proto: Flash
entities:
- uid: 8358
@@ -56049,17 +56612,22 @@ entities:
- type: Transform
pos: -68.36727,19.147322
parent: 2
-- proto: FoodBakedCookieOatmeal
+- proto: FoodBakedCookie
entities:
- - uid: 18832
+ - uid: 18929
components:
- type: Transform
- pos: -68.792595,32.30201
+ pos: -75.47473,80.67777
parent: 2
- - uid: 18833
+ - uid: 18930
components:
- type: Transform
- pos: -68.7509,32.64923
+ pos: -75.335754,80.399994
+ parent: 2
+ - uid: 18931
+ components:
+ - type: Transform
+ pos: -75.669304,80.441666
parent: 2
- proto: FoodBanana
entities:
@@ -56200,6 +56768,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -53.5,52.5
parent: 2
+- proto: FoodDough
+ entities:
+ - uid: 18798
+ components:
+ - type: Transform
+ parent: 18792
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18800
+ components:
+ - type: Transform
+ parent: 18792
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: FoodFrozenPopsicleBerry
entities:
- uid: 6949
@@ -56401,6 +56985,29 @@ entities:
- type: Transform
pos: 34.51082,15.603325
parent: 2
+- proto: FoodRicePork
+ entities:
+ - uid: 18793
+ components:
+ - type: Transform
+ parent: 18792
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18794
+ components:
+ - type: Transform
+ parent: 18792
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18795
+ components:
+ - type: Transform
+ parent: 18792
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: FoodShakerPepper
entities:
- uid: 8411
@@ -56478,6 +57085,46 @@ entities:
- type: Transform
pos: 25.27469,22.639818
parent: 2
+- proto: FoodSoupTomatoBlood
+ entities:
+ - uid: 18796
+ components:
+ - type: Transform
+ parent: 18792
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18797
+ components:
+ - type: Transform
+ parent: 18792
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18799
+ components:
+ - type: Transform
+ parent: 18792
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodTomato
+ entities:
+ - uid: 15123
+ components:
+ - type: Transform
+ pos: -77.649,74.22939
+ parent: 2
+ - uid: 18828
+ components:
+ - type: Transform
+ pos: -77.315445,73.93773
+ parent: 2
+ - uid: 18829
+ components:
+ - type: Transform
+ pos: -77.71849,73.72939
+ parent: 2
- proto: FrenchHornInstrument
entities:
- uid: 8421
@@ -57198,13 +57845,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8515
- components:
- - type: Transform
- pos: -72.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 8516
components:
- type: Transform
@@ -57762,13 +58402,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 8588
- components:
- - type: Transform
- pos: -73.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 8589
components:
- type: Transform
@@ -58076,6 +58709,38 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 19067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,70.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,69.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19078
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,69.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,81.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeFourway
entities:
- uid: 8624
@@ -60753,14 +61418,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8974
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 8975
components:
- type: Transform
@@ -66373,14 +67030,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9703
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 9704
components:
- type: Transform
@@ -69880,6 +70529,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 12840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,70.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 13114
components:
- type: Transform
@@ -70132,6 +70797,171 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 19068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,77.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,76.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,75.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,74.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19074
+ components:
+ - type: Transform
+ pos: -71.5,71.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,78.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19076
+ components:
+ - type: Transform
+ pos: -71.5,72.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19079
+ components:
+ - type: Transform
+ pos: -71.5,70.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,79.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19082
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,80.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,80.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,80.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19087
+ components:
+ - type: Transform
+ pos: -72.5,71.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19088
+ components:
+ - type: Transform
+ pos: -72.5,72.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19091
+ components:
+ - type: Transform
+ pos: -72.5,74.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19092
+ components:
+ - type: Transform
+ pos: -72.5,75.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19093
+ components:
+ - type: Transform
+ pos: -72.5,77.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19094
+ components:
+ - type: Transform
+ pos: -72.5,76.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,78.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,78.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19099
+ components:
+ - type: Transform
+ pos: -72.5,79.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19100
+ components:
+ - type: Transform
+ pos: -72.5,80.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeTJunction
entities:
- uid: 2191
@@ -71765,6 +72595,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 12780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12839
+ components:
+ - type: Transform
+ pos: -73.5,70.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18128
components:
- type: Transform
@@ -71779,6 +72624,37 @@ entities:
rot: 3.141592653589793 rad
pos: -77.5,22.5
parent: 2
+ - uid: 19073
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,73.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19081
+ components:
+ - type: Transform
+ pos: -71.5,80.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,73.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,78.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPort
entities:
- uid: 10368
@@ -73197,6 +74073,39 @@ entities:
- 18855
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 19072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,73.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19021
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,80.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19107
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,80.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19106
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- uid: 733
@@ -73204,6 +74113,8 @@ entities:
- type: Transform
pos: -28.5,60.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- type: DeviceNetwork
configurators:
- invalid
@@ -74441,6 +75352,39 @@ entities:
- 18855
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 19090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,73.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19021
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,78.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19106
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,81.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19107
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVolumePump
entities:
- uid: 10623
@@ -74492,11 +75436,6 @@ entities:
- type: Transform
pos: -65.5,70.5
parent: 2
- - uid: 10630
- components:
- - type: Transform
- pos: -69.5,71.5
- parent: 2
- uid: 10631
components:
- type: Transform
@@ -76515,11 +77454,6 @@ entities:
- type: Transform
pos: -87.5,53.5
parent: 2
- - uid: 11011
- components:
- - type: Transform
- pos: -77.5,71.5
- parent: 2
- uid: 11012
components:
- type: Transform
@@ -76578,7 +77512,8 @@ entities:
- uid: 11025
components:
- type: Transform
- pos: -75.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,82.5
parent: 2
- uid: 11026
components:
@@ -79135,11 +80070,6 @@ entities:
- type: Transform
pos: -89.5,0.5
parent: 2
- - uid: 11513
- components:
- - type: Transform
- pos: -71.5,79.5
- parent: 2
- uid: 11521
components:
- type: Transform
@@ -79593,78 +80523,12 @@ entities:
rot: 3.141592653589793 rad
pos: -81.5,82.5
parent: 2
- - uid: 11617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,82.5
- parent: 2
- - uid: 11618
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,82.5
- parent: 2
- - uid: 11619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,82.5
- parent: 2
- - uid: 11620
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,82.5
- parent: 2
- - uid: 11621
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,82.5
- parent: 2
- - uid: 11622
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,82.5
- parent: 2
- - uid: 11623
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,82.5
- parent: 2
- uid: 11624
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -64.5,82.5
parent: 2
- - uid: 11625
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,82.5
- parent: 2
- - uid: 11626
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,82.5
- parent: 2
- - uid: 11627
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,82.5
- parent: 2
- - uid: 11628
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,82.5
- parent: 2
- uid: 11670
components:
- type: Transform
@@ -79683,6 +80547,12 @@ entities:
rot: 3.141592653589793 rad
pos: -31.5,30.5
parent: 2
+ - uid: 13365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,82.5
+ parent: 2
- uid: 13799
components:
- type: Transform
@@ -79728,12 +80598,6 @@ entities:
- type: Transform
pos: -49.5,44.5
parent: 2
- - uid: 15123
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,34.5
- parent: 2
- uid: 16162
components:
- type: Transform
@@ -79746,6 +80610,24 @@ entities:
rot: 3.141592653589793 rad
pos: -43.5,-16.5
parent: 2
+ - uid: 16747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,83.5
+ parent: 2
+ - uid: 16757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,84.5
+ parent: 2
+ - uid: 16804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,82.5
+ parent: 2
- uid: 17580
components:
- type: Transform
@@ -79940,17 +80822,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 43.5,11.5
parent: 2
- - uid: 18790
- components:
- - type: Transform
- pos: -73.5,34.5
- parent: 2
- uid: 18806
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -76.5,32.5
parent: 2
+ - uid: 18839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,82.5
+ parent: 2
- uid: 18879
components:
- type: Transform
@@ -79969,6 +80852,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -76.5,31.5
parent: 2
+ - uid: 18911
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,85.5
+ parent: 2
+ - uid: 18944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,85.5
+ parent: 2
+ - uid: 18960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,85.5
+ parent: 2
- proto: GrilleBroken
entities:
- uid: 11629
@@ -80531,10 +81432,10 @@ entities:
parent: 2
- proto: HolopadGeneralEVAStorage
entities:
- - uid: 11706
+ - uid: 18801
components:
- type: Transform
- pos: -76.5,74.5
+ pos: -71.5,31.5
parent: 2
- proto: HolopadGeneralLounge
entities:
@@ -81034,18 +81935,57 @@ entities:
- 8
- 7
- type: CMExplosionEffect
- - uid: 11780
+ - uid: 6942
components:
- type: Transform
- pos: -75.47214,74.63834
+ pos: -75.215256,30.728615
parent: 2
+ - type: GasTank
+ toggleActionEntity: 6961
+ - type: Jetpack
+ toggleActionEntity: 6960
- type: CMExplosionEffect
- - uid: 11781
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 6960
+ - 6961
+ - uid: 6971
components:
- type: Transform
- pos: -75.43044,74.3189
+ pos: -75.71558,30.784172
parent: 2
+ - type: GasTank
+ toggleActionEntity: 7647
+ - type: Jetpack
+ toggleActionEntity: 7055
- type: CMExplosionEffect
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 7055
+ - 7647
+ - uid: 18802
+ components:
+ - type: Transform
+ pos: -75.6183,30.464727
+ parent: 2
+ - type: GasTank
+ toggleActionEntity: 18804
+ - type: Jetpack
+ toggleActionEntity: 18803
+ - type: CMExplosionEffect
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 18803
+ - 18804
- proto: JetpackSecurityFilled
entities:
- uid: 9
@@ -81125,8 +82065,19 @@ entities:
- type: Transform
pos: -62.49977,8.6943245
parent: 2
+ - uid: 16568
+ components:
+ - type: Transform
+ pos: -77.55171,74.61619
+ parent: 2
- proto: KitchenMicrowave
entities:
+ - uid: 9032
+ components:
+ - type: Transform
+ pos: -75.5,76.5
+ parent: 2
+ - type: CMExplosionEffect
- uid: 10363
components:
- type: Transform
@@ -81151,6 +82102,12 @@ entities:
pos: -51.5,46.5
parent: 2
- type: CMExplosionEffect
+ - uid: 18991
+ components:
+ - type: Transform
+ pos: -73.5,75.5
+ parent: 2
+ - type: CMExplosionEffect
- proto: KitchenReagentGrinder
entities:
- uid: 2189
@@ -81710,37 +82667,37 @@ entities:
parent: 2
- proto: LockerBlueShieldEnsignFilled
entities:
- - uid: 10621
+ - uid: 18851
components:
- type: Transform
- pos: -75.5,33.5
+ pos: -77.5,79.5
+ parent: 2
+ - uid: 18946
+ components:
+ - type: Transform
+ pos: -70.5,83.5
+ parent: 2
+ - uid: 18947
+ components:
+ - type: Transform
+ pos: -70.5,84.5
+ parent: 2
+ - uid: 18963
+ components:
+ - type: Transform
+ pos: -71.5,80.5
+ parent: 2
+ - uid: 18964
+ components:
+ - type: Transform
+ pos: -70.5,82.5
parent: 2
- proto: LockerBlueShieldOfficerFilled
entities:
- - uid: 10713
+ - uid: 18955
components:
- type: Transform
- pos: -75.5,28.5
- parent: 2
- - uid: 12535
- components:
- - type: Transform
- pos: -75.5,29.5
- parent: 2
- - uid: 13365
- components:
- - type: Transform
- pos: -75.5,31.5
- parent: 2
- - uid: 18799
- components:
- - type: Transform
- pos: -75.5,32.5
- parent: 2
- - uid: 18804
- components:
- - type: Transform
- pos: -75.5,30.5
+ pos: -70.5,80.5
parent: 2
- proto: LockerBoozeFilled
entities:
@@ -81900,6 +82857,49 @@ entities:
- type: Transform
pos: -49.5,52.5
parent: 2
+- proto: LockerFreezerBase
+ entities:
+ - uid: 18792
+ components:
+ - type: Transform
+ pos: -77.5,76.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:
+ - 18798
+ - 18797
+ - 18796
+ - 18795
+ - 18794
+ - 18793
+ - 18799
+ - 18800
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: LockerFreezerVaultFilled
entities:
- uid: 11870
@@ -82433,30 +83433,6 @@ entities:
- type: Transform
pos: 14.5,35.5
parent: 2
-- proto: MagazineM16A4
- entities:
- - uid: 18150
- components:
- - type: Transform
- pos: -34.420364,40.11434
- parent: 2
- - uid: 18151
- components:
- - type: Transform
- pos: -34.698326,40.086563
- parent: 2
-- proto: MagazinePistolSubMachineGun
- entities:
- - uid: 11932
- components:
- - type: Transform
- pos: -34.31289,40.249386
- parent: 2
- - uid: 11933
- components:
- - type: Transform
- pos: -34.66445,40.03845
- parent: 2
- proto: MagazinePistolSubMachineGunPractice
entities:
- uid: 11934
@@ -82493,11 +83469,6 @@ entities:
- type: Transform
pos: -59.5,73.5
parent: 2
- - uid: 11940
- components:
- - type: Transform
- pos: -69.5,73.5
- parent: 2
- uid: 11941
components:
- type: Transform
@@ -83047,20 +84018,10 @@ entities:
- type: Transform
pos: -13.256913,38.36462
parent: 2
- - uid: 18840
+ - uid: 18985
components:
- type: Transform
- pos: -70.713806,31.560686
- parent: 2
- - uid: 18841
- components:
- - type: Transform
- pos: -70.28297,31.588463
- parent: 2
- - uid: 18842
- components:
- - type: Transform
- pos: -70.65821,31.796797
+ pos: -75.52252,79.59629
parent: 2
- proto: MedkitFilled
entities:
@@ -83099,6 +84060,31 @@ entities:
- type: Transform
pos: 35.38269,12.547318
parent: 2
+ - uid: 18980
+ components:
+ - type: Transform
+ pos: -73.61367,73.71264
+ parent: 2
+ - uid: 18981
+ components:
+ - type: Transform
+ pos: -73.46079,73.5912
+ parent: 2
+ - uid: 18982
+ components:
+ - type: Transform
+ pos: -73.45891,73.55501
+ parent: 2
+ - uid: 18983
+ components:
+ - type: Transform
+ pos: -73.655365,73.40708
+ parent: 2
+ - uid: 18984
+ components:
+ - type: Transform
+ pos: -73.307915,73.455826
+ parent: 2
- proto: MedkitOxygenFilled
entities:
- uid: 12028
@@ -83681,6 +84667,11 @@ entities:
- type: Transform
pos: 41.5,6.5
parent: 2
+ - uid: 18979
+ components:
+ - type: Transform
+ pos: -67.5,83.5
+ parent: 2
- proto: PaintingMonkey
entities:
- uid: 12116
@@ -84299,6 +85290,12 @@ entities:
- type: Transform
pos: 30.409834,15.506316
parent: 2
+ - uid: 18934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.911896,81.409065
+ parent: 2
- proto: PlushieRGBee
entities:
- uid: 12208
@@ -84522,6 +85519,13 @@ entities:
- type: Transform
pos: 24.5,20.5
parent: 2
+- proto: PosterContrabandDonutCorp
+ entities:
+ - uid: 16832
+ components:
+ - type: Transform
+ pos: -73.5,34.5
+ parent: 2
- proto: PosterContrabandEAT
entities:
- uid: 12241
@@ -84732,6 +85736,12 @@ entities:
- type: Transform
pos: -20.5,59.5
parent: 2
+ - uid: 18852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,80.5
+ parent: 2
- proto: PosterLegitNoERP
entities:
- uid: 18763
@@ -84790,6 +85800,11 @@ entities:
parent: 2
- proto: PottedPlantRandom
entities:
+ - uid: 5257
+ components:
+ - type: Transform
+ pos: -70.5,73.5
+ parent: 2
- uid: 12278
components:
- type: Transform
@@ -85010,6 +86025,11 @@ entities:
- type: Transform
pos: -25.5,58.5
parent: 2
+ - uid: 19109
+ components:
+ - type: Transform
+ pos: -71.5,78.5
+ parent: 2
- proto: PottedPlantRandomPlastic
entities:
- uid: 18272
@@ -85131,10 +86151,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-8.5
parent: 2
- - uid: 18851
+ - uid: 18989
components:
- type: Transform
- pos: -71.5,31.5
+ pos: -71.5,71.5
parent: 2
- proto: PowerDrill
entities:
@@ -86651,32 +87671,67 @@ entities:
- type: Transform
pos: -23.5,46.5
parent: 2
- - uid: 18875
+ - uid: 19014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,78.5
+ parent: 2
+ - uid: 19015
+ components:
+ - type: Transform
+ pos: -67.5,83.5
+ parent: 2
+ - uid: 19016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,84.5
+ parent: 2
+ - uid: 19017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,80.5
+ parent: 2
+ - uid: 19018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,72.5
+ parent: 2
+ - uid: 19019
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,72.5
+ parent: 2
+- proto: PoweredlightOrange
+ entities:
+ - uid: 6731
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -68.5,33.5
parent: 2
- - uid: 18876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,33.5
- parent: 2
- - uid: 18877
+ - uid: 11621
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -68.5,28.5
parent: 2
- - uid: 18878
+ - uid: 11622
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -75.5,28.5
parent: 2
-- proto: PoweredlightOrange
- entities:
+ - uid: 11626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,33.5
+ parent: 2
- uid: 18650
components:
- type: Transform
@@ -87654,6 +88709,12 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,48.5
parent: 2
+ - uid: 19013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,78.5
+ parent: 2
- proto: PrefilledSyringe
entities:
- uid: 12750
@@ -87677,6 +88738,16 @@ entities:
parent: 2
- proto: Rack
entities:
+ - uid: 6281
+ components:
+ - type: Transform
+ pos: -75.5,33.5
+ parent: 2
+ - uid: 11620
+ components:
+ - type: Transform
+ pos: -75.5,31.5
+ parent: 2
- uid: 12599
components:
- type: Transform
@@ -87827,11 +88898,6 @@ entities:
- type: Transform
pos: -32.5,15.5
parent: 2
- - uid: 12780
- components:
- - type: Transform
- pos: -69.5,73.5
- parent: 2
- uid: 12781
components:
- type: Transform
@@ -88129,21 +89195,6 @@ entities:
rot: 3.141592653589793 rad
pos: -19.5,-5.5
parent: 2
- - uid: 12839
- components:
- - type: Transform
- pos: -75.5,74.5
- parent: 2
- - uid: 12840
- components:
- - type: Transform
- pos: -77.5,76.5
- parent: 2
- - uid: 12841
- components:
- - type: Transform
- pos: -75.5,76.5
- parent: 2
- uid: 12842
components:
- type: Transform
@@ -88154,11 +89205,21 @@ entities:
- type: Transform
pos: -22.5,25.5
parent: 2
+ - uid: 17746
+ components:
+ - type: Transform
+ pos: -75.5,30.5
+ parent: 2
- uid: 18084
components:
- type: Transform
pos: 26.5,6.5
parent: 2
+ - uid: 18149
+ components:
+ - type: Transform
+ pos: -75.5,29.5
+ parent: 2
- uid: 18228
components:
- type: Transform
@@ -88275,27 +89336,25 @@ entities:
rot: 1.5707963267948966 rad
pos: -34.5,-6.5
parent: 2
- - uid: 18815
+ - uid: 18832
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,31.5
+ pos: -75.5,28.5
parent: 2
- - uid: 18818
+ - uid: 18835
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,30.5
+ pos: -75.5,32.5
parent: 2
- - uid: 18828
+ - uid: 18998
components:
- type: Transform
- pos: -70.5,31.5
+ pos: -73.5,74.5
parent: 2
- - uid: 18829
+ - uid: 18999
components:
- type: Transform
- pos: -70.5,30.5
+ pos: -73.5,73.5
parent: 2
- proto: RadiationCollector
entities:
@@ -88424,6 +89483,11 @@ entities:
parent: 2
- proto: RagItem
entities:
+ - uid: 8588
+ components:
+ - type: Transform
+ pos: -75.30373,75.555786
+ parent: 2
- uid: 12850
components:
- type: Transform
@@ -89242,11 +90306,6 @@ entities:
- type: Transform
pos: -65.5,73.5
parent: 2
- - uid: 12985
- components:
- - type: Transform
- pos: -71.5,74.5
- parent: 2
- uid: 12986
components:
- type: Transform
@@ -89812,21 +90871,11 @@ entities:
- type: Transform
pos: -58.5,73.5
parent: 2
- - uid: 13094
- components:
- - type: Transform
- pos: -70.5,72.5
- parent: 2
- uid: 13095
components:
- type: Transform
pos: -80.5,68.5
parent: 2
- - uid: 13096
- components:
- - type: Transform
- pos: -72.5,70.5
- parent: 2
- uid: 13097
components:
- type: Transform
@@ -90796,10 +91845,10 @@ entities:
- type: Transform
pos: -0.5,46.5
parent: 2
- - uid: 18803
+ - uid: 18972
components:
- type: Transform
- pos: -69.5,28.5
+ pos: -70.5,74.5
parent: 2
- proto: RCD
entities:
@@ -91237,42 +92286,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,45.5
parent: 2
- - uid: 9032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,30.5
- parent: 2
- - uid: 10408
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,29.5
- parent: 2
- uid: 10507
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -10.5,45.5
parent: 2
- - uid: 10712
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,31.5
- parent: 2
- uid: 10829
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -81.5,20.5
parent: 2
- - uid: 10872
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,32.5
- parent: 2
- uid: 11068
components:
- type: Transform
@@ -91315,6 +92340,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,61.5
parent: 2
+ - uid: 12985
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,82.5
+ parent: 2
- uid: 13155
components:
- type: Transform
@@ -93136,7 +94167,8 @@ entities:
- uid: 13713
components:
- type: Transform
- pos: -75.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,82.5
parent: 2
- uid: 13714
components:
@@ -93289,12 +94321,8 @@ entities:
- uid: 13757
components:
- type: Transform
- pos: -77.5,71.5
- parent: 2
- - uid: 13758
- components:
- - type: Transform
- pos: -71.5,79.5
+ rot: 3.141592653589793 rad
+ pos: -75.5,82.5
parent: 2
- uid: 13759
components:
@@ -93335,6 +94363,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,31.5
parent: 2
+ - uid: 14732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,85.5
+ parent: 2
+ - uid: 14735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,85.5
+ parent: 2
- uid: 14739
components:
- type: Transform
@@ -93391,12 +94431,6 @@ entities:
- type: Transform
pos: -11.5,51.5
parent: 2
- - uid: 16568
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,34.5
- parent: 2
- uid: 17591
components:
- type: Transform
@@ -93463,10 +94497,35 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,-4.5
parent: 2
- - uid: 18800
+ - uid: 18812
components:
- type: Transform
- pos: -73.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,30.5
+ parent: 2
+ - uid: 18813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,29.5
+ parent: 2
+ - uid: 18814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,31.5
+ parent: 2
+ - uid: 18815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,32.5
+ parent: 2
+ - uid: 18945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,85.5
parent: 2
- proto: RemoteSignaller
entities:
@@ -93566,6 +94625,13 @@ entities:
- type: Transform
pos: -24.543022,25.736662
parent: 2
+- proto: RollingPin
+ entities:
+ - uid: 15460
+ components:
+ - type: Transform
+ pos: -77.398834,74.25507
+ parent: 2
- proto: RubberChicken
entities:
- uid: 13784
@@ -93654,12 +94720,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -74.5,43.5
parent: 2
- - uid: 13796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,34.5
- parent: 2
- uid: 13797
components:
- type: Transform
@@ -93721,6 +94781,11 @@ entities:
- type: Transform
pos: -7.5,64.5
parent: 2
+ - uid: 18821
+ components:
+ - type: Transform
+ pos: -69.5,34.5
+ parent: 2
- proto: ScreenTimer
entities:
- uid: 768
@@ -94218,6 +95283,21 @@ entities:
rot: 1.5707963267948966 rad
pos: -31.5,32.5
parent: 2
+ - uid: 18936
+ components:
+ - type: Transform
+ pos: -75.5,82.5
+ parent: 2
+ - uid: 18937
+ components:
+ - type: Transform
+ pos: -76.5,82.5
+ parent: 2
+ - uid: 18938
+ components:
+ - type: Transform
+ pos: -77.5,82.5
+ parent: 2
- proto: ShuttersRadiation
entities:
- uid: 13898
@@ -94449,6 +95529,23 @@ entities:
18719:
- - Pressed
- Toggle
+ - uid: 18939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,79.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 18936:
+ - - Pressed
+ - Toggle
+ 18937:
+ - - Pressed
+ - Toggle
+ 18938:
+ - - Pressed
+ - Toggle
- proto: SignalButtonDirectional
entities:
- uid: 13915
@@ -95066,12 +96163,6 @@ entities:
rot: 3.141592653589793 rad
pos: -66.5,74.5
parent: 2
- - uid: 14013
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,70.5
- parent: 2
- uid: 14014
components:
- type: Transform
@@ -95089,6 +96180,12 @@ entities:
- type: Transform
pos: -64.5,23.5
parent: 2
+ - uid: 18822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,70.5
+ parent: 2
- proto: SignDirectionalSupply
entities:
- uid: 14017
@@ -95301,6 +96398,11 @@ entities:
- type: Transform
pos: -74.5,71.5
parent: 2
+ - uid: 16748
+ components:
+ - type: Transform
+ pos: -70.5,34.5
+ parent: 2
- proto: SignGravity
entities:
- uid: 14051
@@ -95758,6 +96860,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -3.5,49.5
parent: 2
+ - uid: 18791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,74.5
+ parent: 2
- proto: SinkWide
entities:
- uid: 7016
@@ -95929,6 +97037,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 22.5,-9.5
parent: 2
+ - uid: 18824
+ components:
+ - type: Transform
+ pos: -76.5,76.5
+ parent: 2
- proto: SolarPanel
entities:
- uid: 14147
@@ -97790,10 +98903,10 @@ entities:
parent: 2
- proto: SpawnMobFoxRenault
entities:
- - uid: 767
+ - uid: 6469
components:
- type: Transform
- pos: -9.5,70.5
+ pos: -10.5,68.5
parent: 2
- proto: SpawnMobFrog
entities:
@@ -97821,10 +98934,10 @@ entities:
parent: 2
- proto: SpawnMobHamsterHamlet
entities:
- - uid: 13250
+ - uid: 767
components:
- type: Transform
- pos: -9.5,70.5
+ pos: -15.5,70.5
parent: 2
- proto: SpawnMobKangarooWillow
entities:
@@ -97970,37 +99083,37 @@ entities:
parent: 2
- proto: SpawnPointBlueShieldEnsign
entities:
- - uid: 18834
+ - uid: 19007
components:
- type: Transform
- pos: -74.5,33.5
+ pos: -75.5,81.5
parent: 2
- proto: SpawnPointBlueShieldOfficer
entities:
- - uid: 18835
+ - uid: 19008
components:
- type: Transform
- pos: -74.5,32.5
+ pos: -73.5,84.5
parent: 2
- - uid: 18836
+ - uid: 19009
components:
- type: Transform
- pos: -74.5,31.5
+ pos: -73.5,83.5
parent: 2
- - uid: 18837
+ - uid: 19010
components:
- type: Transform
- pos: -74.5,29.5
+ pos: -73.5,81.5
parent: 2
- - uid: 18838
+ - uid: 19011
components:
- type: Transform
- pos: -74.5,28.5
+ pos: -73.5,80.5
parent: 2
- - uid: 18839
+ - uid: 19012
components:
- type: Transform
- pos: -74.5,30.5
+ pos: -73.5,82.5
parent: 2
- proto: SpawnPointBorg
entities:
@@ -98973,6 +100086,12 @@ entities:
parent: 2
- proto: StoolBar
entities:
+ - uid: 10621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,70.5
+ parent: 2
- uid: 14675
components:
- type: Transform
@@ -99047,6 +100166,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -75.5,-4.5
parent: 2
+ - uid: 18790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,70.5
+ parent: 2
- proto: StorageCanister
entities:
- uid: 14688
@@ -99119,6 +100244,42 @@ entities:
pos: -38.230072,44.56757
parent: 2
- type: CMExplosionEffect
+ - uid: 19000
+ components:
+ - type: Transform
+ pos: -73.27824,74.45232
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 19001
+ components:
+ - type: Transform
+ pos: -73.5423,74.54954
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 19002
+ components:
+ - type: Transform
+ pos: -73.45891,74.49398
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 19003
+ components:
+ - type: Transform
+ pos: -73.58399,74.50787
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 19004
+ components:
+ - type: Transform
+ pos: -73.62569,74.56342
+ parent: 2
+ - type: CMExplosionEffect
+ - uid: 19005
+ components:
+ - type: Transform
+ pos: -75.62783,79.563065
+ parent: 2
+ - type: CMExplosionEffect
- proto: SubstationBasic
entities:
- uid: 14701
@@ -99245,25 +100406,35 @@ entities:
parent: 2
- proto: SuitStorageBlueShield
entities:
- - uid: 18797
+ - uid: 18195
components:
- type: Transform
- pos: -70.5,28.5
+ pos: -77.5,78.5
parent: 2
- - uid: 18812
+ - uid: 18917
components:
- type: Transform
- pos: -72.5,28.5
+ pos: -66.5,81.5
parent: 2
- - uid: 18813
+ - uid: 18918
components:
- type: Transform
- pos: -73.5,28.5
+ pos: -66.5,83.5
parent: 2
- - uid: 18814
+ - uid: 18919
components:
- type: Transform
- pos: -71.5,28.5
+ pos: -66.5,82.5
+ parent: 2
+ - uid: 18920
+ components:
+ - type: Transform
+ pos: -68.5,83.5
+ parent: 2
+ - uid: 18921
+ components:
+ - type: Transform
+ pos: -68.5,82.5
parent: 2
- proto: SuitStorageCaptain
entities:
@@ -99318,42 +100489,77 @@ entities:
- type: Transform
pos: -24.5,9.5
parent: 2
-- proto: SuitStorageEVAAlternate
+- proto: SuitStorageEVA
entities:
- - uid: 14731
+ - uid: 6730
components:
- type: Transform
- pos: -75.5,75.5
+ pos: -68.5,33.5
parent: 2
- - uid: 14732
+ - uid: 6733
components:
- type: Transform
- pos: -77.5,75.5
+ pos: -68.5,28.5
parent: 2
- - uid: 14733
+ - uid: 11706
components:
- type: Transform
- pos: -77.5,74.5
+ pos: -70.5,33.5
parent: 2
- - uid: 14734
+ - uid: 11940
components:
- type: Transform
- pos: -77.5,73.5
+ pos: -68.5,31.5
parent: 2
- - uid: 14735
+ - uid: 14745
components:
- type: Transform
- pos: -77.5,72.5
+ pos: -73.5,33.5
parent: 2
- - uid: 14736
+ - uid: 17702
components:
- type: Transform
- pos: -75.5,72.5
+ pos: -73.5,29.5
parent: 2
- - uid: 14737
+ - uid: 17703
components:
- type: Transform
- pos: -75.5,73.5
+ pos: -73.5,32.5
+ parent: 2
+ - uid: 18148
+ components:
+ - type: Transform
+ pos: -70.5,32.5
+ parent: 2
+ - uid: 18150
+ components:
+ - type: Transform
+ pos: -68.5,29.5
+ parent: 2
+ - uid: 18151
+ components:
+ - type: Transform
+ pos: -68.5,32.5
+ parent: 2
+ - uid: 18820
+ components:
+ - type: Transform
+ pos: -70.5,28.5
+ parent: 2
+ - uid: 18833
+ components:
+ - type: Transform
+ pos: -73.5,28.5
+ parent: 2
+ - uid: 18886
+ components:
+ - type: Transform
+ pos: -68.5,30.5
+ parent: 2
+ - uid: 18887
+ components:
+ - type: Transform
+ pos: -70.5,29.5
parent: 2
- proto: SuitStorageEVAPrisoner
entities:
@@ -99609,12 +100815,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -68.5,31.5
parent: 2
- - uid: 14745
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,76.5
- parent: 2
- uid: 14746
components:
- type: Transform
@@ -99776,6 +100976,24 @@ entities:
rot: 3.141592653589793 rad
pos: -26.5,65.5
parent: 2
+ - uid: 18826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -66.5,82.5
+ parent: 2
+ - uid: 18827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,84.5
+ parent: 2
+ - uid: 18830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,76.5
+ parent: 2
- proto: SurveillanceCameraEngineering
entities:
- uid: 14761
@@ -100209,6 +101427,12 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Entrance hall
+ - uid: 18825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,76.5
+ parent: 2
- proto: SurveillanceCameraMedical
entities:
- uid: 14798
@@ -100782,6 +102006,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,46.5
parent: 2
+ - uid: 13096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,71.5
+ parent: 2
- uid: 14866
components:
- type: Transform
@@ -101635,22 +102865,18 @@ entities:
- uid: 18816
components:
- type: Transform
- pos: -72.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,71.5
parent: 2
- - uid: 18817
+ - uid: 18986
components:
- type: Transform
- pos: -71.5,31.5
+ pos: -73.5,76.5
parent: 2
- - uid: 18819
+ - uid: 18987
components:
- type: Transform
- pos: -71.5,30.5
- parent: 2
- - uid: 18820
- components:
- - type: Transform
- pos: -72.5,31.5
+ pos: -73.5,75.5
parent: 2
- proto: TableCarpet
entities:
@@ -101873,6 +103099,12 @@ entities:
parent: 2
- proto: TableReinforced
entities:
+ - uid: 10712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,71.5
+ parent: 2
- uid: 10733
components:
- type: Transform
@@ -102170,11 +103402,6 @@ entities:
- type: Transform
pos: -76.5,-5.5
parent: 2
- - uid: 18791
- components:
- - type: Transform
- pos: -72.5,34.5
- parent: 2
- proto: TableStone
entities:
- uid: 15124
@@ -102242,11 +103469,29 @@ entities:
parent: 2
- proto: TableWood
entities:
+ - uid: 245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,75.5
+ parent: 2
- uid: 7922
components:
- type: Transform
pos: -41.5,30.5
parent: 2
+ - uid: 10408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,74.5
+ parent: 2
+ - uid: 11932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,76.5
+ parent: 2
- uid: 15135
components:
- type: Transform
@@ -103000,10 +104245,29 @@ entities:
rot: 1.5707963267948966 rad
pos: 37.5,15.5
parent: 2
- - uid: 18808
+ - uid: 18817
components:
- type: Transform
- pos: -68.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,76.5
+ parent: 2
+ - uid: 18823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,73.5
+ parent: 2
+ - uid: 18925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,80.5
+ parent: 2
+ - uid: 18970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,77.5
parent: 2
- proto: TargetClown
entities:
@@ -103373,6 +104637,16 @@ entities:
parent: 2
- proto: ToolboxEmergencyFilled
entities:
+ - uid: 8515
+ components:
+ - type: Transform
+ pos: -75.68779,29.355497
+ parent: 2
+ - uid: 10630
+ components:
+ - type: Transform
+ pos: -75.284744,29.536053
+ parent: 2
- uid: 15315
components:
- type: Transform
@@ -103404,6 +104678,11 @@ entities:
parent: 2
- proto: ToolboxMechanicalFilled
entities:
+ - uid: 153
+ components:
+ - type: Transform
+ pos: -75.68779,29.755226
+ parent: 2
- uid: 15320
components:
- type: Transform
@@ -103797,7 +105076,7 @@ entities:
pos: -39.5,20.5
parent: 2
- type: Door
- secondsUntilStateChange: -27293.867
+ secondsUntilStateChange: -32886.113
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -103831,7 +105110,7 @@ entities:
pos: -44.5,34.5
parent: 2
- type: Door
- secondsUntilStateChange: -34782.82
+ secondsUntilStateChange: -40375.066
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -104254,10 +105533,10 @@ entities:
- type: Transform
pos: -33.5,50.5
parent: 2
- - uid: 18811
+ - uid: 18971
components:
- type: Transform
- pos: -68.5,28.5
+ pos: -70.5,75.5
parent: 2
- proto: VendingMachineCoffeeMigrateUnderwear
entities:
@@ -104577,6 +105856,11 @@ entities:
parent: 2
- proto: VendingMachineTankDispenserEVA
entities:
+ - uid: 6732
+ components:
+ - type: Transform
+ pos: -72.5,28.5
+ parent: 2
- uid: 15457
components:
- type: Transform
@@ -104592,10 +105876,10 @@ entities:
- type: Transform
pos: -15.5,7.5
parent: 2
- - uid: 15460
+ - uid: 18807
components:
- type: Transform
- pos: -76.5,76.5
+ pos: -71.5,28.5
parent: 2
- proto: VendingMachineTheater
entities:
@@ -104915,6 +106199,12 @@ entities:
rot: 3.141592653589793 rad
pos: -35.5,-10.5
parent: 2
+ - uid: 10713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,79.5
+ parent: 2
- uid: 10716
components:
- type: Transform
@@ -104973,6 +106263,12 @@ entities:
rot: 3.141592653589793 rad
pos: -81.5,22.5
parent: 2
+ - uid: 11011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,80.5
+ parent: 2
- uid: 11016
components:
- type: Transform
@@ -105081,10 +106377,17 @@ entities:
- type: Transform
pos: -83.5,1.5
parent: 2
+ - uid: 11513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,71.5
+ parent: 2
- uid: 11514
components:
- type: Transform
- pos: -70.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,85.5
parent: 2
- uid: 11515
components:
@@ -105206,6 +106509,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -74.5,23.5
parent: 2
+ - uid: 13758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,82.5
+ parent: 2
- uid: 13764
components:
- type: Transform
@@ -105221,6 +106530,12 @@ entities:
- type: Transform
pos: -86.5,-1.5
parent: 2
+ - uid: 13796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,82.5
+ parent: 2
- uid: 13811
components:
- type: Transform
@@ -105236,6 +106551,39 @@ entities:
- type: Transform
pos: -73.5,21.5
parent: 2
+ - uid: 14013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,85.5
+ parent: 2
+ - uid: 14731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,85.5
+ parent: 2
+ - uid: 14733
+ components:
+ - type: Transform
+ pos: -69.5,83.5
+ parent: 2
+ - uid: 14734
+ components:
+ - type: Transform
+ pos: -69.5,84.5
+ parent: 2
+ - uid: 14736
+ components:
+ - type: Transform
+ pos: -68.5,84.5
+ parent: 2
+ - uid: 14737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -69.5,34.5
+ parent: 2
- uid: 14797
components:
- type: Transform
@@ -111726,16 +113074,6 @@ entities:
- type: Transform
pos: -76.5,77.5
parent: 2
- - uid: 16747
- components:
- - type: Transform
- pos: -70.5,79.5
- parent: 2
- - uid: 16748
- components:
- - type: Transform
- pos: -73.5,79.5
- parent: 2
- uid: 16749
components:
- type: Transform
@@ -111776,11 +113114,6 @@ entities:
- type: Transform
pos: -18.5,-25.5
parent: 2
- - uid: 16757
- components:
- - type: Transform
- pos: -73.5,78.5
- parent: 2
- uid: 16758
components:
- type: Transform
@@ -112043,11 +113376,6 @@ entities:
- type: Transform
pos: 6.5,-22.5
parent: 2
- - uid: 16804
- components:
- - type: Transform
- pos: -72.5,79.5
- parent: 2
- uid: 16805
components:
- type: Transform
@@ -112180,11 +113508,6 @@ entities:
- type: Transform
pos: 21.5,-3.5
parent: 2
- - uid: 16832
- components:
- - type: Transform
- pos: -73.5,77.5
- parent: 2
- uid: 16833
components:
- type: Transform
@@ -112396,6 +113719,16 @@ entities:
- type: Transform
pos: -32.5,27.5
parent: 2
+ - uid: 17514
+ components:
+ - type: Transform
+ pos: -65.5,84.5
+ parent: 2
+ - uid: 17515
+ components:
+ - type: Transform
+ pos: -66.5,84.5
+ parent: 2
- uid: 17562
components:
- type: Transform
@@ -112406,6 +113739,17 @@ entities:
- type: Transform
pos: -32.5,34.5
parent: 2
+ - uid: 17605
+ components:
+ - type: Transform
+ pos: -65.5,82.5
+ parent: 2
+ - uid: 17701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,71.5
+ parent: 2
- uid: 17725
components:
- type: Transform
@@ -112721,6 +114065,78 @@ entities:
rot: 1.5707963267948966 rad
pos: -74.5,27.5
parent: 2
+ - uid: 18809
+ components:
+ - type: Transform
+ pos: -73.5,71.5
+ parent: 2
+ - uid: 18810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,72.5
+ parent: 2
+ - uid: 18819
+ components:
+ - type: Transform
+ pos: -73.5,34.5
+ parent: 2
+ - uid: 18838
+ components:
+ - type: Transform
+ pos: -70.5,27.5
+ parent: 2
+ - uid: 18842
+ components:
+ - type: Transform
+ pos: -67.5,84.5
+ parent: 2
+ - uid: 18843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,82.5
+ parent: 2
+ - uid: 18844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,73.5
+ parent: 2
+ - uid: 18846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,81.5
+ parent: 2
+ - uid: 18884
+ components:
+ - type: Transform
+ pos: -65.5,83.5
+ parent: 2
+ - uid: 18916
+ components:
+ - type: Transform
+ pos: -65.5,81.5
+ parent: 2
+ - uid: 18924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,81.5
+ parent: 2
+ - uid: 18956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,83.5
+ parent: 2
+ - uid: 18957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,84.5
+ parent: 2
- proto: WallSolid
entities:
- uid: 139
@@ -116246,16 +117662,6 @@ entities:
- type: Transform
pos: -69.5,8.5
parent: 2
- - uid: 17514
- components:
- - type: Transform
- pos: -73.5,71.5
- parent: 2
- - uid: 17515
- components:
- - type: Transform
- pos: -72.5,71.5
- parent: 2
- uid: 17516
components:
- type: Transform
@@ -116297,11 +117703,6 @@ entities:
- type: Transform
pos: 26.5,20.5
parent: 2
- - uid: 17524
- components:
- - type: Transform
- pos: -70.5,71.5
- parent: 2
- uid: 17525
components:
- type: Transform
@@ -116712,11 +118113,6 @@ entities:
- type: Transform
pos: 30.5,46.5
parent: 2
- - uid: 17605
- components:
- - type: Transform
- pos: -71.5,71.5
- parent: 2
- uid: 17606
components:
- type: Transform
@@ -117200,21 +118596,6 @@ entities:
rot: 3.141592653589793 rad
pos: -60.5,3.5
parent: 2
- - uid: 17701
- components:
- - type: Transform
- pos: -73.5,74.5
- parent: 2
- - uid: 17702
- components:
- - type: Transform
- pos: -70.5,74.5
- parent: 2
- - uid: 17703
- components:
- - type: Transform
- pos: -71.5,74.5
- parent: 2
- uid: 18314
components:
- type: Transform
@@ -117420,6 +118801,23 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,-5.5
parent: 2
+ - uid: 18940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,79.5
+ parent: 2
+ - uid: 18943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,79.5
+ parent: 2
+ - uid: 18967
+ components:
+ - type: Transform
+ pos: -71.5,79.5
+ parent: 2
- proto: WardrobeBlackFilled
entities:
- uid: 17704
@@ -117702,10 +119100,10 @@ entities:
- type: Transform
pos: -13.5,7.5
parent: 2
- - uid: 18827
+ - uid: 19006
components:
- type: Transform
- pos: -68.5,30.5
+ pos: -73.5,77.5
parent: 2
- proto: WaterTankFull
entities:
@@ -117837,10 +119235,10 @@ entities:
- type: Transform
pos: -83.5,73.5
parent: 2
- - uid: 18852
+ - uid: 18988
components:
- type: Transform
- pos: -72.5,30.5
+ pos: -73.5,76.5
parent: 2
- proto: WeaponCapacitorRechargerCircuitboard
entities:
@@ -117851,100 +119249,82 @@ entities:
parent: 2
- proto: WeaponEnergyGunMini
entities:
- - uid: 18843
- components:
- - type: Transform
- pos: -70.49632,30.536892
- parent: 2
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 50
- hitscanProto: BulletDisabler
- projectileProto: null
- - type: Item
- heldPrefix: disabler
- - type: HitscanBatteryAmmoProvider
- fireCost: 50
- proto: BulletDisabler
- - uid: 18844
- components:
- - type: Transform
- pos: -70.39903,30.439669
- parent: 2
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 50
- hitscanProto: BulletDisabler
- projectileProto: null
- - type: Item
- heldPrefix: disabler
- - type: HitscanBatteryAmmoProvider
- fireCost: 50
- proto: BulletDisabler
- - uid: 18845
- components:
- - type: Transform
- pos: -70.30175,30.689669
- parent: 2
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 50
- hitscanProto: BulletDisabler
- projectileProto: null
- - type: Item
- heldPrefix: disabler
- - type: HitscanBatteryAmmoProvider
- fireCost: 50
- proto: BulletDisabler
- - uid: 18846
- components:
- - type: Transform
- pos: -70.56581,30.634113
- parent: 2
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 50
- hitscanProto: BulletDisabler
- projectileProto: null
- - type: Item
- heldPrefix: disabler
- - type: HitscanBatteryAmmoProvider
- fireCost: 50
- proto: BulletDisabler
- - uid: 18847
- components:
- - type: Transform
- pos: -70.44073,30.523003
- parent: 2
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 50
- hitscanProto: BulletDisabler
- projectileProto: null
- - type: Item
- heldPrefix: disabler
- - type: HitscanBatteryAmmoProvider
- fireCost: 50
- proto: BulletDisabler
- uid: 18848
components:
- type: Transform
- pos: -70.31564,30.606337
+ pos: -73.63959,74.49945
+ parent: 2
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 18975
+ components:
+ - type: Transform
+ pos: -73.65961,74.70108
+ parent: 2
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 18976
+ components:
+ - type: Transform
+ pos: -73.51638,74.6293
+ parent: 2
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 18977
+ components:
+ - type: Transform
+ pos: -73.433,74.632866
+ parent: 2
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 18978
+ components:
+ - type: Transform
+ pos: -73.42334,74.53434
parent: 2
- type: EnergyGunFireModes
currentFireMode:
@@ -118017,14 +119397,6 @@ entities:
- type: Transform
pos: 26.613811,-2.5883276
parent: 2
-- proto: WeaponRifleM16A4
- entities:
- - uid: 18149
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.1285,40.308784
- parent: 2
- proto: WeaponShotgunSPAS12
entities:
- uid: 11656
@@ -118043,13 +119415,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: WeaponSubMachineGunSkorpion
- entities:
- - uid: 17779
- components:
- - type: Transform
- pos: -34.50039,40.60095
- parent: 2
- proto: WebBed
entities:
- uid: 766
@@ -118157,6 +119522,24 @@ entities:
- type: CMExplosionEffect
- proto: Windoor
entities:
+ - uid: 6941
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,31.5
+ parent: 2
+ - uid: 11780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,29.5
+ parent: 2
+ - uid: 12019
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,30.5
+ parent: 2
- uid: 13409
components:
- type: Transform
@@ -118252,11 +119635,28 @@ entities:
rot: 3.141592653589793 rad
pos: 8.5,66.5
parent: 2
- - uid: 18801
+ - uid: 18808
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,33.5
+ parent: 2
+ - uid: 18853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,32.5
+ parent: 2
+ - uid: 18877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,28.5
+ parent: 2
+ - uid: 18885
+ components:
+ - type: Transform
+ pos: -71.5,71.5
parent: 2
- proto: WindoorBarLocked
entities:
@@ -118472,10 +119872,11 @@ entities:
rot: 3.141592653589793 rad
pos: -24.5,87.5
parent: 2
- - uid: 18802
+ - uid: 18845
components:
- type: Transform
- pos: -72.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,71.5
parent: 2
- proto: WindoorSecureEngineeringLocked
entities:
@@ -119689,6 +121090,26 @@ entities:
parent: 2
- proto: WindowReinforcedDirectional
entities:
+ - uid: 6939
+ components:
+ - type: Transform
+ pos: -75.5,33.5
+ parent: 2
+ - uid: 6940
+ components:
+ - type: Transform
+ pos: -75.5,32.5
+ parent: 2
+ - uid: 11781
+ components:
+ - type: Transform
+ pos: -75.5,31.5
+ parent: 2
+ - uid: 12535
+ components:
+ - type: Transform
+ pos: -75.5,29.5
+ parent: 2
- uid: 18069
components:
- type: Transform
@@ -119839,6 +121260,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 40.5,3.5
parent: 2
+ - uid: 18836
+ components:
+ - type: Transform
+ pos: -75.5,30.5
+ parent: 2
- proto: WoodDoor
entities:
- uid: 11867
diff --git a/Resources/Maps/_Sunrise/Station/marathon.yml b/Resources/Maps/_Sunrise/Station/marathon.yml
index 7666b8dda4..73667f9a36 100644
--- a/Resources/Maps/_Sunrise/Station/marathon.yml
+++ b/Resources/Maps/_Sunrise/Station/marathon.yml
@@ -1,11 +1,11 @@
meta:
format: 7
category: Map
- engineVersion: 254.1.0
- forkId: ""
- forkVersion: ""
- time: 04/20/2025 06:40:41
- entityCount: 22188
+ engineVersion: 255.1.0
+ forkId: sunrise_station
+ forkVersion: 13eb0ce4bafb5713294bc5611a69fc2af4c51871
+ time: 05/15/2025 17:31:29
+ entityCount: 22210
maps:
- 1
grids:
@@ -26,6 +26,7 @@ tilemap:
27: FloorClown
31: FloorDark
34: FloorDarkHerringbone
+ 4: FloorDarkMini
36: FloorDarkMono
38: FloorDarkPavement
39: FloorDarkPavementVertical
@@ -172,7 +173,7 @@ entities:
version: 6
-3,3:
ind: -3,3
- tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAABAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAABAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAHwAAAAAABAAAAAAAHwAAAAAABAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAABAAAAAAAHwAAAAAABAAAAAAAHwAAAAAABAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-2,3:
ind: -2,3
@@ -554,7 +555,6 @@ entities:
1014: 5,43
1015: 3,41
1016: 7,41
- 1124: -41,59
1126: 14,-2
1127: 15,-2
1175: 23,-6
@@ -599,7 +599,6 @@ entities:
1847: 33,17
1848: 32,17
1849: 31,17
- 2168: -40,54
2220: 3,-41
2224: -4,-38
2225: -2,-38
@@ -672,8 +671,6 @@ entities:
color: '#FFFFFFFF'
id: BotLeft
decals:
- 2166: -39,56
- 2167: -41,56
2221: 2,-38
2222: 0,-38
2242: -26,-45
@@ -935,6 +932,11 @@ entities:
id: BrickTileSteelCornerSe
decals:
2541: 33,7
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 3306: -39,57
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
@@ -958,29 +960,55 @@ entities:
id: BrickTileSteelCornerSw
decals:
2540: 31,7
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 3307: -41,57
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
2431: -63,-25
2624: -27,7
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelEndN
+ decals:
+ 3298: -39,60
+ 3299: -41,60
- node:
color: '#9FED5896'
id: BrickTileSteelEndS
decals:
2379: 1,-12
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelInnerNe
+ decals:
+ 3310: -41,58
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNe
decals:
1706: -69,-52
1707: -69,-58
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 3309: -39,58
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNw
decals:
1687: -61,-61
1694: -56,-56
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelInnerSe
+ decals:
+ 3296: -40,57
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSe
@@ -993,6 +1021,11 @@ entities:
id: BrickTileSteelInnerSw
decals:
2377: 1,-10
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelInnerSw
+ decals:
+ 3297: -40,57
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSw
@@ -1015,6 +1048,13 @@ entities:
2440: -31,7
2441: -31,8
2442: -31,9
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelLineE
+ decals:
+ 3300: -39,59
+ 3301: -39,58
+ 3305: -41,59
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
@@ -1050,6 +1090,11 @@ entities:
id: BrickTileSteelLineN
decals:
2450: -32,13
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelLineN
+ decals:
+ 3308: -40,58
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
@@ -1095,6 +1140,13 @@ entities:
id: BrickTileSteelLineW
decals:
2542: 31,8
+ - node:
+ color: '#DE3A3AFF'
+ id: BrickTileSteelLineW
+ decals:
+ 3302: -41,58
+ 3303: -41,59
+ 3304: -39,59
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
@@ -1104,6 +1156,12 @@ entities:
2628: -27,8
2629: -27,9
2630: -27,10
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteBox
+ decals:
+ 3263: -40,52
+ 3295: -40,56
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNe
@@ -1233,12 +1291,27 @@ entities:
decals:
2930: -23,-24
2974: -19,-23
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteEndE
+ decals:
+ 3274: -38,54
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteEndW
+ decals:
+ 3273: -42,54
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerNe
decals:
1591: -3,32
1615: -12,40
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 3278: -40,54
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerNe
@@ -1265,6 +1338,11 @@ entities:
decals:
1589: -3,32
1617: -8,40
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 3277: -40,54
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerNw
@@ -1297,6 +1375,11 @@ entities:
decals:
1592: -3,32
1616: -12,42
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 3276: -40,54
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerSe
@@ -1324,6 +1407,11 @@ entities:
decals:
1590: -3,32
1614: -8,42
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 3275: -40,54
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerSw
@@ -1367,6 +1455,12 @@ entities:
1534: -15,35
1612: -12,41
2655: -40,-61
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 3267: -40,53
+ 3293: -40,55
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
@@ -1484,6 +1578,12 @@ entities:
1609: -9,40
1610: -10,40
1611: -11,40
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 3269: -41,54
+ 3270: -39,54
- node:
color: '#52B4E996'
id: BrickTileWhiteLineN
@@ -1556,6 +1656,12 @@ entities:
1606: -9,42
1607: -10,42
1608: -11,42
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 3271: -41,54
+ 3272: -39,54
- node:
color: '#52B4E996'
id: BrickTileWhiteLineS
@@ -1640,6 +1746,12 @@ entities:
1539: -5,35
1613: -8,41
2656: -37,-61
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 3265: -40,53
+ 3294: -40,55
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
@@ -4567,12 +4679,6 @@ entities:
id: WarnBox
decals:
2650: -19,-48
- - node:
- angle: -3.141592653589793 rad
- color: '#FFFFFFFF'
- id: WarnCorner
- decals:
- 1123: -40,60
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -4580,22 +4686,6 @@ entities:
decals:
447: -6,-12
953: 2,64
- - node:
- color: '#FFFFFFFF'
- id: WarnCorner
- decals:
- 1120: -42,58
- - node:
- angle: -3.141592653589793 rad
- color: '#FFFFFFFF'
- id: WarnCornerFlipped
- decals:
- 1122: -42,60
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerFlipped
- decals:
- 1121: -40,58
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -4684,6 +4774,20 @@ entities:
id: WarnEnd
decals:
3: -2,21
+ - node:
+ color: '#4B709CFF'
+ id: WarnFullGreyscale
+ decals:
+ 3258: -40,52
+ 3279: -41,53
+ 3280: -42,53
+ 3281: -42,55
+ 3282: -41,55
+ 3283: -39,55
+ 3284: -38,55
+ 3285: -38,53
+ 3286: -39,53
+ 3292: -40,56
- node:
color: '#52B4E996'
id: WarnFullGreyscale
@@ -4715,6 +4819,18 @@ entities:
decals:
2496: -33,45
2499: -40,45
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnFullGreyscale
+ decals:
+ 3319: -40,59
+ 3320: -40,60
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#DE3A3AFF'
+ id: WarnFullGreyscale
+ decals:
+ 3290: -40,56
- node:
color: '#FFFFFFFF'
id: WarnFullGreyscale
@@ -4774,6 +4890,12 @@ entities:
id: WarnLineGreyscaleN
decals:
2618: -20,40
+ - node:
+ color: '#4B709CFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 3257: -40,51
+ 3291: -40,55
- node:
color: '#52B4E996'
id: WarnLineGreyscaleN
@@ -4792,12 +4914,24 @@ entities:
decals:
2494: -33,44
2495: -40,44
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 3288: -40,57
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleN
decals:
2262: -19,-39
2282: -13,-39
+ - node:
+ color: '#4B709CFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 3259: -40,53
+ 3262: -40,57
- node:
color: '#52B4E996'
id: WarnLineGreyscaleS
@@ -4825,6 +4959,12 @@ entities:
2501: -47,45
2502: -48,45
2503: -49,45
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 3289: -40,55
- node:
color: '#EFB34196'
id: WarnLineGreyscaleS
@@ -4990,7 +5130,6 @@ entities:
decals:
85: -38,51
86: -39,51
- 87: -40,51
88: -41,51
89: -42,51
370: 11,42
@@ -5024,11 +5163,6 @@ entities:
color: '#FFFFFFFF'
id: WarningLine
decals:
- 78: -38,53
- 79: -39,53
- 80: -40,53
- 81: -41,53
- 82: -42,53
597: 7,-21
598: 6,-21
599: 5,-21
@@ -6104,7 +6238,8 @@ entities:
2: 34
0: 32768
-13,13:
- 0: 47359
+ 0: 47295
+ 4: 64
-13,14:
0: 12287
-13,15:
@@ -6127,15 +6262,18 @@ entities:
-11,16:
0: 4545
-11,13:
- 0: 52416
+ 0: 52288
+ 5: 128
-11,14:
0: 52236
-10,13:
0: 30577
-10,14:
- 0: 63239
+ 0: 42759
+ 4: 20480
-10,15:
- 0: 3847
+ 0: 3843
+ 4: 4
2: 45056
-10,16:
2: 4353
@@ -6673,18 +6811,18 @@ entities:
2: 34952
6,-6:
2: 61440
- 4: 224
+ 6: 224
6,-5:
0: 112
2: 2184
6,-8:
3: 224
- 5: 57344
+ 7: 57344
6,-7:
- 5: 224
- 6: 57344
+ 7: 224
+ 8: 57344
6,-9:
- 5: 57568
+ 7: 57568
7,-5:
2: 4080
7,-6:
@@ -7684,6 +7822,36 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.14996
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14993
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -9198,7 +9366,7 @@ entities:
- type: Transform
pos: -39.5,45.5
parent: 2
- - uid: 125
+ - uid: 17146
components:
- type: Transform
pos: -39.5,52.5
@@ -10522,7 +10690,7 @@ entities:
pos: -27.5,18.5
parent: 2
- type: Door
- secondsUntilStateChange: -13752.179
+ secondsUntilStateChange: -18635.73
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -10774,11 +10942,11 @@ entities:
parent: 2
- proto: AirlockMaintServiceLocked
entities:
- - uid: 373
+ - uid: 13559
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -43.5,21.5
+ pos: -44.5,21.5
parent: 2
- proto: AirlockMaintTheatreLocked
entities:
@@ -11112,12 +11280,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,-33.5
parent: 2
- - uid: 428
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,59.5
- parent: 2
- proto: AirlockSecurityLocked
entities:
- uid: 429
@@ -13533,6 +13695,13 @@ entities:
- type: Transform
pos: -41.700066,23.696747
parent: 2
+- proto: BarberPole
+ entities:
+ - uid: 8068
+ components:
+ - type: Transform
+ pos: -37.5,23.5
+ parent: 2
- proto: BarberRazor
entities:
- uid: 851
@@ -13680,147 +13849,22 @@ entities:
- type: Transform
pos: -55.469933,52.429756
parent: 2
-- proto: DoubleBed
+- proto: Bed
entities:
- - uid: 875
- components:
- - type: Transform
- pos: -38.5,11.5
- parent: 2
- - uid: 876
- components:
- - type: Transform
- pos: -48.5,39.5
- parent: 2
- uid: 877
components:
- type: Transform
- pos: -44.5,39.5
+ pos: -48.5,39.5
parent: 2
- uid: 878
components:
- type: Transform
pos: -40.5,39.5
parent: 2
- - uid: 879
- components:
- - type: Transform
- pos: -49.5,61.5
- parent: 2
- - uid: 880
- components:
- - type: Transform
- pos: -45.5,61.5
- parent: 2
- - uid: 881
- components:
- - type: Transform
- pos: -17.5,31.5
- parent: 2
- - uid: 882
- components:
- - type: Transform
- pos: 0.5,35.5
- parent: 2
- - uid: 883
- components:
- - type: Transform
- pos: 16.5,40.5
- parent: 2
- - uid: 884
- components:
- - type: Transform
- pos: 16.5,37.5
- parent: 2
- - uid: 885
- components:
- - type: Transform
- pos: 16.5,34.5
- parent: 2
- - uid: 886
- components:
- - type: Transform
- pos: -33.5,-23.5
- parent: 2
- - uid: 887
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 2
- - uid: 888
- components:
- - type: Transform
- pos: 23.5,0.5
- parent: 2
- - uid: 889
- components:
- - type: Transform
- pos: 25.5,13.5
- parent: 2
- - uid: 890
- components:
- - type: Transform
- pos: 39.5,45.5
- parent: 2
- - uid: 891
- components:
- - type: Transform
- pos: 43.5,43.5
- parent: 2
- - uid: 892
- components:
- - type: Transform
- pos: 47.5,43.5
- parent: 2
- - uid: 893
- components:
- - type: Transform
- pos: 47.5,45.5
- parent: 2
- - uid: 894
- components:
- - type: Transform
- pos: -77.5,-40.5
- parent: 2
- - uid: 895
- components:
- - type: Transform
- pos: -51.5,-57.5
- parent: 2
- - uid: 896
- components:
- - type: Transform
- pos: -51.5,-53.5
- parent: 2
- - uid: 897
- components:
- - type: Transform
- pos: -35.5,-47.5
- parent: 2
- - uid: 898
- components:
- - type: Transform
- pos: -54.5,51.5
- parent: 2
- - uid: 899
- components:
- - type: Transform
- pos: -54.5,50.5
- parent: 2
- - uid: 900
- components:
- - type: Transform
- pos: -27.5,-47.5
- parent: 2
- - uid: 901
- components:
- - type: Transform
- pos: -27.5,-46.5
- parent: 2
- uid: 902
components:
- type: Transform
- pos: -50.5,50.5
+ pos: -44.5,39.5
parent: 2
- proto: BedsheetBlue
entities:
@@ -13844,14 +13888,6 @@ entities:
parent: 905
- type: Physics
canCollide: False
-- proto: BedsheetCMO
- entities:
- - uid: 907
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-23.5
- parent: 2
- proto: BedsheetCult
entities:
- uid: 908
@@ -13922,30 +13958,8 @@ entities:
- type: Transform
pos: 23.5,0.5
parent: 2
-- proto: BedsheetRD
- entities:
- - uid: 919
- components:
- - type: Transform
- pos: 25.5,13.5
- parent: 2
- proto: BedsheetSpawner
entities:
- - uid: 920
- components:
- - type: Transform
- pos: 16.5,34.5
- parent: 2
- - uid: 921
- components:
- - type: Transform
- pos: 16.5,37.5
- parent: 2
- - uid: 922
- components:
- - type: Transform
- pos: 16.5,40.5
- parent: 2
- uid: 923
components:
- type: Transform
@@ -14190,11 +14204,6 @@ entities:
parent: 2
- proto: BlastDoorOpen
entities:
- - uid: 968
- components:
- - type: Transform
- pos: -37.5,61.5
- parent: 2
- uid: 969
components:
- type: Transform
@@ -14598,20 +14607,8 @@ entities:
parent: 2
- type: BallisticAmmoProvider
unspawnedCount: 12
- - uid: 1042
- components:
- - type: Transform
- pos: -41.476646,54.757214
- parent: 2
- - type: BallisticAmmoProvider
- unspawnedCount: 12
- proto: BoxBodyBag
entities:
- - uid: 1043
- components:
- - type: Transform
- pos: -52.567253,52.64174
- parent: 2
- uid: 1044
components:
- type: Transform
@@ -14622,13 +14619,22 @@ entities:
- type: Transform
pos: -25.5,-0.5
parent: 2
-- proto: BoxFlashbang
- entities:
- - uid: 1046
+ - uid: 15470
components:
- type: Transform
- pos: -37.719124,55.411057
+ parent: 15071
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BoxClusterBangFull
+ entities:
+ - uid: 15142
+ components:
+ - type: Transform
+ pos: -38.22783,53.57156
parent: 2
+- proto: BoxFlashbang
+ entities:
- uid: 1047
components:
- type: Transform
@@ -14766,6 +14772,13 @@ entities:
- type: Transform
pos: -60.46691,-65.40645
parent: 2
+- proto: BoxGrenadeStinger
+ entities:
+ - uid: 21791
+ components:
+ - type: Transform
+ pos: -38.22783,53.69656
+ parent: 2
- proto: BoxHandcuff
entities:
- uid: 1072
@@ -14828,15 +14841,6 @@ entities:
- type: Transform
pos: -15.855776,-18.39025
parent: 2
-- proto: BoxShotgunIncendiary
- entities:
- - uid: 1082
- components:
- - type: Transform
- pos: -41.476646,54.61659
- parent: 2
- - type: BallisticAmmoProvider
- unspawnedCount: 12
- proto: BoxSterileMask
entities:
- uid: 1083
@@ -14861,6 +14865,13 @@ entities:
- type: Transform
pos: -15.996401,-18.280874
parent: 2
+- proto: BoxTearGas
+ entities:
+ - uid: 14604
+ components:
+ - type: Transform
+ pos: -38.247353,53.41531
+ parent: 2
- proto: BoxZiptie
entities:
- uid: 1087
@@ -30074,11 +30085,6 @@ entities:
- type: Transform
pos: -14.5,-38.5
parent: 2
- - uid: 4120
- components:
- - type: Transform
- pos: -38.5,62.5
- parent: 2
- uid: 4121
components:
- type: Transform
@@ -30787,7 +30793,7 @@ entities:
- uid: 4262
components:
- type: Transform
- pos: -36.5,59.5
+ pos: -37.5,63.5
parent: 2
- uid: 4263
components:
@@ -31197,22 +31203,22 @@ entities:
- uid: 4344
components:
- type: Transform
- pos: -36.5,62.5
+ pos: -39.5,57.5
parent: 2
- uid: 4345
components:
- type: Transform
- pos: -39.5,62.5
+ pos: -36.5,63.5
parent: 2
- uid: 4346
components:
- type: Transform
- pos: -40.5,62.5
+ pos: -38.5,63.5
parent: 2
- uid: 4347
components:
- type: Transform
- pos: -41.5,62.5
+ pos: -39.5,63.5
parent: 2
- uid: 4348
components:
@@ -31494,6 +31500,26 @@ entities:
- type: Transform
pos: -21.5,-58.5
parent: 2
+ - uid: 6723
+ components:
+ - type: Transform
+ pos: -40.5,63.5
+ parent: 2
+ - uid: 14606
+ components:
+ - type: Transform
+ pos: -39.5,56.5
+ parent: 2
+ - uid: 15091
+ components:
+ - type: Transform
+ pos: -41.5,63.5
+ parent: 2
+ - uid: 22191
+ components:
+ - type: Transform
+ pos: -39.5,58.5
+ parent: 2
- proto: CableApcStack
entities:
- uid: 4404
@@ -43144,28 +43170,11 @@ entities:
parent: 2
- proto: CargoPallet
entities:
- - uid: 6723
- components:
- - type: Transform
- pos: -9.5,14.5
- parent: 2
- - uid: 6724
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,12.5
- parent: 2
- uid: 6725
components:
- type: Transform
pos: -30.5,33.5
parent: 2
- - uid: 6726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-21.5
- parent: 2
- uid: 6727
components:
- type: Transform
@@ -43224,6 +43233,33 @@ entities:
rot: 3.141592653589793 rad
pos: 37.5,-2.5
parent: 2
+- proto: CargoTelepad
+ entities:
+ - uid: 6724
+ components:
+ - type: Transform
+ pos: -9.5,14.5
+ parent: 2
+ - uid: 6726
+ components:
+ - type: Transform
+ pos: 23.5,12.5
+ parent: 2
+ - uid: 13528
+ components:
+ - type: Transform
+ pos: 3.5,-41.5
+ parent: 2
+ - uid: 13565
+ components:
+ - type: Transform
+ pos: -12.5,-19.5
+ parent: 2
+ - uid: 14603
+ components:
+ - type: Transform
+ pos: -35.5,44.5
+ parent: 2
- proto: Carpet
entities:
- uid: 6736
@@ -48669,11 +48705,6 @@ entities:
- type: Transform
pos: -42.5,46.5
parent: 2
- - uid: 7776
- components:
- - type: Transform
- pos: -28.5,57.5
- parent: 2
- uid: 7777
components:
- type: Transform
@@ -49563,6 +49594,11 @@ entities:
parent: 2
- proto: ChemDispenser
entities:
+ - uid: 125
+ components:
+ - type: Transform
+ pos: -52.5,52.5
+ parent: 2
- uid: 7933
components:
- type: Transform
@@ -49592,6 +49628,11 @@ entities:
- type: Transform
pos: -5.5,-6.5
parent: 2
+ - uid: 17120
+ components:
+ - type: Transform
+ pos: -52.5,53.5
+ parent: 2
- proto: ChessBoard
entities:
- uid: 7938
@@ -49692,6 +49733,13 @@ entities:
- Steel
- Glass
- Gold
+- proto: CleanerDispenser
+ entities:
+ - uid: 18041
+ components:
+ - type: Transform
+ pos: -31.5,14.5
+ parent: 2
- proto: ClosetBombFilled
entities:
- uid: 7952
@@ -50764,6 +50812,11 @@ entities:
- 0
- 0
- 0
+ - uid: 21782
+ components:
+ - type: Transform
+ pos: -32.5,9.5
+ parent: 2
- proto: ClosetL3JanitorFilled
entities:
- uid: 8002
@@ -51060,6 +51113,13 @@ entities:
- 0
- 0
- 0
+- proto: ClosetPatologoanatomFilled
+ entities:
+ - uid: 14605
+ components:
+ - type: Transform
+ pos: -23.5,-4.5
+ parent: 2
- proto: ClosetRadiationSuitFilled
entities:
- uid: 8016
@@ -51085,52 +51145,6 @@ entities:
- 0
- 0
- 0
- - uid: 8017
- components:
- - type: Transform
- pos: -2.5,-43.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 8018
- components:
- - type: Transform
- pos: -3.5,-43.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 8019
components:
- type: Transform
@@ -51400,11 +51414,6 @@ entities:
- type: Transform
pos: -7.5304756,16.51597
parent: 2
- - uid: 8034
- components:
- - type: Transform
- pos: 16.503487,36.63665
- parent: 2
- uid: 8035
components:
- type: Transform
@@ -51417,6 +51426,22 @@ entities:
- type: Transform
pos: 33.456085,32.56812
parent: 2
+ - type: GroupExamine
+ group:
+ - hoverMessage: ""
+ contextText: verb-examine-group-other
+ icon: /Textures/Interface/examine-star.png
+ components:
+ - Armor
+ - ClothingSpeedModifier
+ entries:
+ - message: >-
+ Обеспечивает следующую защиту:
+
+ - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color].
+ priority: 0
+ component: Armor
+ title: null
- proto: ClothingBeltPlantFilled
entities:
- uid: 8037
@@ -51583,11 +51608,6 @@ entities:
- type: Transform
pos: 5.522977,-23.530071
parent: 2
- - uid: 8065
- components:
- - type: Transform
- pos: -13.542964,-45.170254
- parent: 2
- proto: ClothingEyesHudDiagnostic
entities:
- uid: 8066
@@ -51600,17 +51620,17 @@ entities:
- type: Transform
pos: -15.509655,-44.241684
parent: 2
-- proto: ClothingEyesHudSecurity
+- proto: ClothingEyesHudMedSec
entities:
- - uid: 8068
- components:
- - type: Transform
- pos: -27.597134,60.645412
- parent: 2
- uid: 8069
components:
- type: Transform
- pos: -27.565884,60.520412
+ pos: -27.693882,60.704937
+ parent: 2
+ - uid: 8079
+ components:
+ - type: Transform
+ pos: -27.631382,60.486187
parent: 2
- proto: ClothingHandsGlovesBoxingBlue
entities:
@@ -51671,11 +51691,6 @@ entities:
parent: 2
- proto: ClothingHandsGlovesLatex
entities:
- - uid: 8079
- components:
- - type: Transform
- pos: -52.504753,53.54799
- parent: 2
- uid: 8080
components:
- type: Transform
@@ -51977,23 +51992,6 @@ entities:
- type: Transform
pos: 35.44555,43.82996
parent: 2
-- proto: ClothingHeadHelmetBasic
- entities:
- - uid: 8130
- components:
- - type: Transform
- pos: -39.575058,56.668564
- parent: 2
- - uid: 8131
- components:
- - type: Transform
- pos: -39.575058,56.668564
- parent: 2
- - uid: 8132
- components:
- - type: Transform
- pos: -39.575058,56.668564
- parent: 2
- proto: ClothingHeadHelmetTemplar
entities:
- uid: 8133
@@ -52016,6 +52014,22 @@ entities:
rot: 3.141592653589793 rad
pos: 18.196587,0.6626599
parent: 2
+- proto: ClothingMaskBreath
+ entities:
+ - uid: 8174
+ components:
+ - type: Transform
+ parent: 8172
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18272
+ components:
+ - type: Transform
+ parent: 18175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ClothingMaskGas
entities:
- uid: 8136
@@ -52065,13 +52079,6 @@ entities:
- type: Transform
pos: 9.578405,-22.536226
parent: 2
-- proto: ClothingMaskSterile
- entities:
- - uid: 8145
- components:
- - type: Transform
- pos: -52.52038,53.282364
- parent: 2
- proto: ClothingNeckBling
entities:
- uid: 8146
@@ -52201,40 +52208,29 @@ entities:
- type: Transform
pos: -0.49387097,-7.362574
parent: 2
-- proto: ClothingOuterArmorBasic
- entities:
- - uid: 8165
- components:
- - type: Transform
- pos: -39.48033,56.411068
- parent: 2
- - uid: 8166
- components:
- - type: Transform
- pos: -39.48033,56.411068
- parent: 2
- - uid: 8167
- components:
- - type: Transform
- pos: -39.48033,56.411068
- parent: 2
- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 8168
+ - uid: 18782
components:
- type: Transform
- pos: -39.286102,56.736275
- parent: 2
- - uid: 8169
+ parent: 18736
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18884
components:
- type: Transform
- pos: -39.286102,56.736275
- parent: 2
- - uid: 8170
+ parent: 18736
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18885
components:
- type: Transform
- pos: -39.286102,56.736275
- parent: 2
+ parent: 18736
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ClothingOuterArmorCult
entities:
- uid: 8171
@@ -52244,27 +52240,15 @@ entities:
parent: 2
- proto: ClothingOuterArmorReflective
entities:
- - uid: 8172
+ - uid: 8170
components:
- type: Transform
- pos: -39.730423,56.32322
+ pos: -38.72557,53.771923
parent: 2
-- proto: ClothingOuterArmorRiot
- entities:
- - uid: 8173
+ - uid: 22204
components:
- type: Transform
- pos: -39.387558,56.481064
- parent: 2
- - uid: 8174
- components:
- - type: Transform
- pos: -39.387558,56.481064
- parent: 2
- - uid: 8175
- components:
- - type: Transform
- pos: -39.387558,56.481064
+ pos: -38.72557,53.506298
parent: 2
- proto: ClothingOuterCoatBomber
entities:
@@ -52343,6 +52327,22 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingOuterHardsuitSecuritySunrise
+ entities:
+ - uid: 8173
+ components:
+ - type: Transform
+ parent: 8172
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18472
+ components:
+ - type: Transform
+ parent: 18175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ClothingOuterNunRobe
entities:
- uid: 8188
@@ -52396,13 +52396,6 @@ entities:
- type: Transform
pos: -17.385342,-31.456936
parent: 2
-- proto: ClothingOuterVestWebMerc
- entities:
- - uid: 8197
- components:
- - type: Transform
- pos: 16.536156,36.4687
- parent: 2
- proto: ClothingOuterWinterSec
entities:
- uid: 8198
@@ -53035,13 +53028,6 @@ entities:
- type: Transform
pos: -3.656699,64.588875
parent: 2
-- proto: ComputeCargoSalaryConsole
- entities:
- - uid: 8301
- components:
- - type: Transform
- pos: -5.5,41.5
- parent: 2
- proto: ComputerAlert
entities:
- uid: 8302
@@ -53083,6 +53069,14 @@ entities:
15133:
- - ArtifactAnalyzerSender
- ArtifactAnalyzerReceiver
+- proto: ComputerAtmosMonitoring
+ entities:
+ - uid: 14602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,42.5
+ parent: 2
- proto: computerBodyScanner
entities:
- uid: 8308
@@ -53145,14 +53139,30 @@ entities:
parent: 2
- proto: ComputerCargoOrdersEngineering
entities:
- - uid: 22182
+ - uid: 15983
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,-38.5
+ pos: 3.5,-42.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13528:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerCargoOrdersMedical
entities:
+ - uid: 13564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-20.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13565:
+ - - OrderSender
+ - OrderReceiver
- uid: 22183
components:
- type: Transform
@@ -53161,26 +53171,41 @@ entities:
parent: 2
- proto: ComputerCargoOrdersScience
entities:
- - uid: 22184
+ - uid: 14600
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 23.5,16.5
+ pos: 23.5,13.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6726:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerCargoOrdersSecurity
entities:
- - uid: 22188
+ - uid: 13562
components:
- type: Transform
- pos: -34.5,44.5
+ pos: -36.5,44.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14603:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerCargoOrdersService
entities:
- - uid: 22187
+ - uid: 14601
components:
- type: Transform
- pos: -11.5,14.5
+ pos: -8.5,14.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6724:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerComms
entities:
- uid: 8317
@@ -53195,13 +53220,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -10.5,45.5
parent: 2
-- proto: ComputerContrabandSale
- entities:
- - uid: 8319
- components:
- - type: Transform
- pos: -36.5,44.5
- parent: 2
- proto: ComputerCrewMonitoring
entities:
- uid: 8320
@@ -53251,6 +53269,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -31.5,-62.5
parent: 2
+ - uid: 13563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,46.5
+ parent: 2
- proto: ComputerCriminalRecords
entities:
- uid: 8328
@@ -53319,6 +53343,11 @@ entities:
parent: 2
- proto: ComputerFundingAllocation
entities:
+ - uid: 8065
+ components:
+ - type: Transform
+ pos: -5.5,41.5
+ parent: 2
- uid: 22186
components:
- type: Transform
@@ -53346,12 +53375,6 @@ entities:
parent: 2
- proto: ComputerMedicalRecords
entities:
- - uid: 8342
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,46.5
- parent: 2
- uid: 8343
components:
- type: Transform
@@ -53369,20 +53392,6 @@ entities:
- type: Transform
pos: -34.5,-15.5
parent: 2
- - uid: 8346
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-19.5
- parent: 2
-- proto: ComputerMedicalSaleConsole
- entities:
- - uid: 8347
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-20.5
- parent: 2
- proto: ComputerMiningSaleConsole
entities:
- uid: 8348
@@ -53481,21 +53490,6 @@ entities:
- type: Transform
pos: 29.5,-9.5
parent: 2
-- proto: ComputerScienceSaleConsole
- entities:
- - uid: 8363
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,13.5
- parent: 2
-- proto: ComputerServiceSaleConsole
- entities:
- - uid: 8364
- components:
- - type: Transform
- pos: -8.5,14.5
- parent: 2
- proto: ComputerSolarControl
entities:
- uid: 8365
@@ -53629,14 +53623,6 @@ entities:
- type: Transform
pos: -42.5,33.5
parent: 2
-- proto: ComputeStationBankConsole
- entities:
- - uid: 8387
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,42.5
- parent: 2
- proto: ContainmentFieldGenerator
entities:
- uid: 8388
@@ -53659,13 +53645,6 @@ entities:
- type: Transform
pos: -22.5,-49.5
parent: 2
-- proto: ContrabandPalletSell
- entities:
- - uid: 8392
- components:
- - type: Transform
- pos: -35.5,44.5
- parent: 2
- proto: CornSeeds
entities:
- uid: 8393
@@ -53687,8 +53666,56 @@ entities:
- type: Transform
pos: 29.536556,-37.5655
parent: 2
+- proto: CrateArmoryIK30
+ entities:
+ - uid: 8363
+ components:
+ - type: MetaData
+ name: ящик лазерного вооружения
+ - type: Transform
+ pos: -39.5,59.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 8364
+ - 8387
+ - 8392
+ - 8439
+ - 8461
+ - 8486
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateArtifactContainer
entities:
+ - uid: 8346
+ components:
+ - type: Transform
+ pos: 27.5,-3.5
+ parent: 2
- uid: 8396
components:
- type: Transform
@@ -54165,6 +54192,13 @@ entities:
- type: Transform
pos: -7.5,45.5
parent: 2
+- proto: CratePermaEscapeSpawner
+ entities:
+ - uid: 15092
+ components:
+ - type: Transform
+ pos: 29.5,-4.5
+ parent: 2
- proto: CratePrivateSecure
entities:
- uid: 8438
@@ -54172,12 +54206,64 @@ entities:
- type: Transform
pos: 34.5,-9.5
parent: 2
-- proto: CrateSecurityTrackingMindshieldImplants
+- proto: CrateSecurityArmor
entities:
- - uid: 8439
+ - uid: 18736
components:
- type: Transform
- pos: -41.5,56.5
+ pos: -40.5,53.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ 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:
+ - 18782
+ - 18884
+ - 18885
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrateSecurityBiosuit
+ entities:
+ - uid: 18892
+ components:
+ - type: Transform
+ pos: -27.5,57.5
+ parent: 2
+- proto: CrateSecurityRiot
+ entities:
+ - uid: 19169
+ components:
+ - type: Transform
+ pos: -41.5,53.5
+ parent: 2
+- proto: CrateSecurityTrackingMindshieldImplants
+ entities:
+ - uid: 373
+ components:
+ - type: Transform
+ pos: -37.5,53.5
parent: 2
- proto: CrateServiceJanitorialSupplies
entities:
@@ -54359,6 +54445,11 @@ entities:
parent: 2
- proto: CrowbarRed
entities:
+ - uid: 876
+ components:
+ - type: Transform
+ pos: -27.506382,60.18564
+ parent: 2
- uid: 8459
components:
- type: Transform
@@ -54369,11 +54460,6 @@ entities:
- type: Transform
pos: 0.44135857,19.519009
parent: 2
- - uid: 8461
- components:
- - type: Transform
- pos: -27.542324,58.243687
- parent: 2
- uid: 8462
components:
- type: Transform
@@ -54394,6 +54480,11 @@ entities:
- type: Transform
pos: -5.497734,64.51515
parent: 2
+ - uid: 19167
+ components:
+ - type: Transform
+ pos: -27.522007,59.888763
+ parent: 2
- proto: CryogenicSleepUnit
entities:
- uid: 8466
@@ -54461,6 +54552,14 @@ entities:
- type: Transform
pos: -38.5,11.5
parent: 2
+- proto: CurtainsOrange
+ entities:
+ - uid: 428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,21.5
+ parent: 2
- proto: d20Dice
entities:
- uid: 8477
@@ -54521,10 +54620,10 @@ entities:
parent: 2
- proto: DefaultStationBeaconArmory
entities:
- - uid: 8486
+ - uid: 21780
components:
- type: Transform
- pos: -39.5,53.5
+ pos: -39.5,57.5
parent: 2
- proto: DefaultStationBeaconArrivals
entities:
@@ -60254,6 +60353,160 @@ entities:
- type: Transform
pos: 19.593287,54.456036
parent: 2
+- proto: DoubleBed
+ entities:
+ - uid: 875
+ components:
+ - type: Transform
+ pos: -38.5,11.5
+ parent: 2
+ - uid: 879
+ components:
+ - type: Transform
+ pos: -49.5,61.5
+ parent: 2
+ - uid: 880
+ components:
+ - type: Transform
+ pos: -45.5,61.5
+ parent: 2
+ - uid: 881
+ components:
+ - type: Transform
+ pos: -17.5,31.5
+ parent: 2
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 2
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 16.5,40.5
+ parent: 2
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 16.5,37.5
+ parent: 2
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 16.5,34.5
+ parent: 2
+ - uid: 886
+ components:
+ - type: Transform
+ pos: -33.5,-23.5
+ parent: 2
+ - uid: 887
+ components:
+ - type: Transform
+ pos: -32.5,-13.5
+ parent: 2
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 23.5,0.5
+ parent: 2
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 2
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 39.5,45.5
+ parent: 2
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 43.5,43.5
+ parent: 2
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 2
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 2
+ - uid: 894
+ components:
+ - type: Transform
+ pos: -77.5,-40.5
+ parent: 2
+ - uid: 895
+ components:
+ - type: Transform
+ pos: -51.5,-57.5
+ parent: 2
+ - uid: 896
+ components:
+ - type: Transform
+ pos: -51.5,-53.5
+ parent: 2
+ - uid: 897
+ components:
+ - type: Transform
+ pos: -35.5,-47.5
+ parent: 2
+ - uid: 898
+ components:
+ - type: Transform
+ pos: -54.5,51.5
+ parent: 2
+ - uid: 899
+ components:
+ - type: Transform
+ pos: -54.5,50.5
+ parent: 2
+ - uid: 900
+ components:
+ - type: Transform
+ pos: -27.5,-47.5
+ parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -27.5,-46.5
+ parent: 2
+- proto: DoubleBedsheetCMO
+ entities:
+ - uid: 919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-23.5
+ parent: 2
+- proto: DoubleBedsheetRD
+ entities:
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 2
+- proto: DoubleBedsheetWhite
+ entities:
+ - uid: 921
+ components:
+ - type: Transform
+ pos: 16.5,34.5
+ parent: 2
+ - uid: 922
+ components:
+ - type: Transform
+ pos: 16.5,37.5
+ parent: 2
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 16.5,40.5
+ parent: 2
- proto: DoubleEmergencyOxygenTankFilled
entities:
- uid: 9478
@@ -60702,6 +60955,17 @@ entities:
parent: 2
- proto: EmergencyLight
entities:
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: -40.5,60.5
+ parent: 2
+ - uid: 8165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,54.5
+ parent: 2
- uid: 9549
components:
- type: Transform
@@ -60833,14 +61097,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 9564
- components:
- - type: Transform
- pos: -39.5,56.5
- parent: 2
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 9565
components:
- type: Transform
@@ -61067,6 +61323,11 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
+ - uid: 22209
+ components:
+ - type: Transform
+ pos: -38.5,60.5
+ parent: 2
- proto: EmergencyMedipen
entities:
- uid: 9591
@@ -61076,11 +61337,6 @@ entities:
parent: 2
- proto: EmergencyRollerBedSpawnFolded
entities:
- - uid: 9592
- components:
- - type: Transform
- pos: -14.602694,-16.508675
- parent: 2
- uid: 9593
components:
- type: Transform
@@ -89237,6 +89493,21 @@ entities:
parent: 2
- proto: Grille
entities:
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: -37.5,63.5
+ parent: 2
+ - uid: 8167
+ components:
+ - type: Transform
+ pos: -39.5,63.5
+ parent: 2
+ - uid: 8168
+ components:
+ - type: Transform
+ pos: -41.5,63.5
+ parent: 2
- uid: 13335
components:
- type: Transform
@@ -90160,11 +90431,6 @@ entities:
- type: Transform
pos: 46.5,49.5
parent: 2
- - uid: 13518
- components:
- - type: Transform
- pos: -37.5,61.5
- parent: 2
- uid: 13519
components:
- type: Transform
@@ -90210,12 +90476,6 @@ entities:
- type: Transform
pos: -26.5,60.5
parent: 2
- - uid: 13528
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,60.5
- parent: 2
- uid: 13529
components:
- type: Transform
@@ -90363,47 +90623,11 @@ entities:
- type: Transform
pos: -32.5,65.5
parent: 2
- - uid: 13558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,58.5
- parent: 2
- - uid: 13559
- components:
- - type: Transform
- pos: -39.5,62.5
- parent: 2
- - uid: 13560
- components:
- - type: Transform
- pos: -40.5,62.5
- parent: 2
- uid: 13561
components:
- type: Transform
pos: -34.5,55.5
parent: 2
- - uid: 13562
- components:
- - type: Transform
- pos: -38.5,62.5
- parent: 2
- - uid: 13563
- components:
- - type: Transform
- pos: -36.5,62.5
- parent: 2
- - uid: 13564
- components:
- - type: Transform
- pos: -37.5,62.5
- parent: 2
- - uid: 13565
- components:
- - type: Transform
- pos: -41.5,62.5
- parent: 2
- uid: 13566
components:
- type: Transform
@@ -95366,6 +95590,56 @@ entities:
rot: -1.5707963267948966 rad
pos: -29.5,-53.5
parent: 2
+ - uid: 15078
+ components:
+ - type: Transform
+ pos: -38.5,56.5
+ parent: 2
+ - uid: 15658
+ components:
+ - type: Transform
+ pos: -37.5,23.5
+ parent: 2
+ - uid: 19165
+ components:
+ - type: Transform
+ pos: -37.5,21.5
+ parent: 2
+ - uid: 19166
+ components:
+ - type: Transform
+ pos: -37.5,21.5
+ parent: 2
+ - uid: 19168
+ components:
+ - type: Transform
+ pos: -36.5,63.5
+ parent: 2
+ - uid: 21790
+ components:
+ - type: Transform
+ pos: -38.5,63.5
+ parent: 2
+ - uid: 22045
+ components:
+ - type: Transform
+ pos: -37.5,56.5
+ parent: 2
+ - uid: 22190
+ components:
+ - type: Transform
+ pos: -40.5,56.5
+ parent: 2
+ - uid: 22202
+ components:
+ - type: Transform
+ pos: -40.5,63.5
+ parent: 2
+ - uid: 22208
+ components:
+ - type: Transform
+ pos: -41.5,56.5
+ parent: 2
- proto: GrilleBroken
entities:
- uid: 14535
@@ -95736,74 +96010,58 @@ entities:
- type: Transform
pos: -10.5,-19.5
parent: 2
-- proto: GunSafe
- entities:
- - uid: 14600
- components:
- - type: MetaData
- name: оружейный сейф энергопушек
- - type: Transform
- pos: -37.5,54.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:
- - 14601
- - 14602
- - 14603
- - 14604
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: GunSafeBlueShield
- entities:
- - uid: 14605
- components:
- - type: Transform
- pos: -38.5,9.5
- parent: 2
- proto: GunSafeCombineSmallArms
entities:
- - uid: 14606
+ - uid: 22207
components:
- type: Transform
- pos: -41.5,55.5
+ pos: -37.5,55.5
+ parent: 2
+- proto: GunSafeEnergyGun
+ entities:
+ - uid: 22205
+ components:
+ - type: Transform
+ pos: -40.5,55.5
parent: 2
- proto: GunSafeRifleM16A4
entities:
- - uid: 14607
+ - uid: 18473
components:
- type: Transform
- pos: -41.5,53.5
+ pos: -37.5,58.5
+ parent: 2
+- proto: GunSafeShotgunSPAS12
+ entities:
+ - uid: 21849
+ components:
+ - type: Transform
+ pos: -41.5,59.5
parent: 2
- proto: GunSafeSubMachineGunMP7
entities:
- - uid: 14608
+ - uid: 15219
+ components:
+ - type: MetaData
+ name: оружейный сейф MP7
+ - type: Transform
+ pos: -41.5,58.5
+ parent: 2
+- proto: GunSafeSubMachineGunSkorpion
+ entities:
+ - uid: 22043
+ components:
+ - type: MetaData
+ name: оружейный сейф скорпионов
+ - type: Transform
+ pos: -41.5,57.5
+ parent: 2
+- proto: GunSafeSubMachineGunVector
+ entities:
+ - uid: 21847
components:
- type: Transform
- pos: -37.5,53.5
+ pos: -37.5,57.5
parent: 2
- proto: Handcuffs
entities:
@@ -95812,6 +96070,13 @@ entities:
- type: Transform
pos: -13.489765,43.452324
parent: 2
+- proto: HandheldArtifactContainer
+ entities:
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 27.509525,-4.453563
+ parent: 2
- proto: HandheldGPSBasic
entities:
- uid: 14610
@@ -95911,6 +96176,13 @@ entities:
- type: Transform
pos: -11.5,-57.5
parent: 2
+- proto: HighSecArmoryLocked
+ entities:
+ - uid: 13560
+ components:
+ - type: Transform
+ pos: -39.5,56.5
+ parent: 2
- proto: HighSecCommandLocked
entities:
- uid: 14627
@@ -95937,6 +96209,13 @@ entities:
- type: Transform
pos: 21.5,1.5
parent: 2
+- proto: HolopadSecurityArmory
+ entities:
+ - uid: 21846
+ components:
+ - type: Transform
+ pos: -39.5,54.5
+ parent: 2
- proto: HospitalCurtainsOpen
entities:
- uid: 14631
@@ -97910,18 +98189,22 @@ entities:
- type: CMExplosionEffect
- proto: JetpackSecurityFilled
entities:
- - uid: 15008
+ - uid: 8342
components:
- type: Transform
- pos: -39.62777,56.71206
- parent: 2
+ parent: 8172
+ - type: Physics
+ canCollide: False
- type: CMExplosionEffect
- - uid: 15009
+ - type: InsideEntityStorage
+ - uid: 18434
components:
- type: Transform
- pos: -39.62777,56.71206
- parent: 2
+ parent: 18175
+ - type: Physics
+ canCollide: False
- type: CMExplosionEffect
+ - type: InsideEntityStorage
- proto: KitchenMicrowave
entities:
- uid: 15010
@@ -98456,6 +98739,36 @@ entities:
- type: Transform
pos: -49.5,53.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 15470
+ - 15657
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: LockerCaptainFilledNoLaser
entities:
- uid: 15072
@@ -98606,15 +98919,15 @@ entities:
- 0
- proto: LockerEngineerFilled
entities:
- - uid: 15078
+ - uid: 8018
components:
- type: Transform
- pos: 3.5,-42.5
+ pos: -2.5,-43.5
parent: 2
- - uid: 15079
+ - uid: 8034
components:
- type: Transform
- pos: 3.5,-41.5
+ pos: -3.5,-43.5
parent: 2
- proto: LockerEngineerFilledHardsuit
entities:
@@ -98650,75 +98963,6 @@ entities:
parent: 2
- proto: LockerEvidence
entities:
- - uid: 15086
- components:
- - type: Transform
- pos: -44.5,51.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15087
- components:
- - type: Transform
- pos: -44.5,52.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15088
- components:
- - type: Transform
- pos: -44.5,53.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 15089
components:
- type: Transform
@@ -98742,75 +98986,6 @@ entities:
- 0
- 0
- 0
- - uid: 15090
- components:
- - type: Transform
- pos: -48.5,42.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15091
- components:
- - type: Transform
- pos: -45.5,42.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 15092
- components:
- - type: Transform
- pos: -41.5,42.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 3.4430928
- - 12.952587
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: LockerFreezer
entities:
- uid: 9524
@@ -99118,11 +99293,58 @@ entities:
parent: 2
- proto: LockerParamedicFilled
entities:
+ - uid: 14608
+ components:
+ - type: Transform
+ pos: -14.5,-16.5
+ parent: 2
- uid: 15108
components:
- type: Transform
pos: -12.5,-16.5
parent: 2
+- proto: LockerPrisoner
+ entities:
+ - uid: 16536
+ components:
+ - type: Transform
+ pos: -41.5,42.5
+ parent: 2
+- proto: LockerPrisoner2
+ entities:
+ - uid: 16607
+ components:
+ - type: Transform
+ pos: -45.5,42.5
+ parent: 2
+- proto: LockerPrisoner3
+ entities:
+ - uid: 17064
+ components:
+ - type: Transform
+ pos: -48.5,42.5
+ parent: 2
+- proto: LockerPrisoner4
+ entities:
+ - uid: 16342
+ components:
+ - type: Transform
+ pos: -44.5,53.5
+ parent: 2
+- proto: LockerPrisoner5
+ entities:
+ - uid: 16182
+ components:
+ - type: Transform
+ pos: -44.5,52.5
+ parent: 2
+- proto: LockerPrisoner6
+ entities:
+ - uid: 16181
+ components:
+ - type: Transform
+ pos: -44.5,51.5
+ parent: 2
- proto: LockerQuarterMasterFilled
entities:
- uid: 8186
@@ -99345,6 +99567,16 @@ entities:
- 0
- proto: LockerSecurityFilled
entities:
+ - uid: 9592
+ components:
+ - type: Transform
+ pos: -35.5,59.5
+ parent: 2
+ - uid: 13558
+ components:
+ - type: Transform
+ pos: -35.5,58.5
+ parent: 2
- uid: 15119
components:
- type: Transform
@@ -99538,6 +99770,13 @@ entities:
- 0
- 0
- 0
+- proto: LootSpawnerMaterialsSurplus
+ entities:
+ - uid: 15009
+ components:
+ - type: Transform
+ pos: 29.5,-7.5
+ parent: 2
- proto: MachineAnomalyGenerator
entities:
- uid: 15128
@@ -99645,20 +99884,6 @@ entities:
- type: Transform
pos: -20.370735,-69.56265
parent: 2
-- proto: MagazineDeagle
- entities:
- - uid: 15143
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.287304,50.71986
- parent: 2
- - uid: 21851
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.318554,50.485485
- parent: 2
- proto: MailBag
entities:
- uid: 15144
@@ -99922,6 +100147,11 @@ entities:
parent: 2
- proto: MedicalBed
entities:
+ - uid: 907
+ components:
+ - type: Transform
+ pos: -50.5,50.5
+ parent: 2
- uid: 15192
components:
- type: Transform
@@ -99985,11 +100215,13 @@ entities:
- type: Transform
pos: -39.594727,11.489756
parent: 2
- - uid: 15203
+ - uid: 15657
components:
- type: Transform
- pos: -52.604927,53.067722
- parent: 2
+ parent: 15071
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: MedkitFilled
entities:
- uid: 15204
@@ -100078,20 +100310,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -61.5,42.5
parent: 2
-- proto: MiningWindow
- entities:
- - uid: 15219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,21.5
- parent: 2
- - uid: 15220
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,23.5
- parent: 2
- proto: Mirror
entities:
- uid: 15221
@@ -100566,6 +100784,22 @@ entities:
parent: 2
- proto: NitrogenTankFilled
entities:
+ - uid: 8301
+ components:
+ - type: Transform
+ parent: 8172
+ - type: Physics
+ canCollide: False
+ - type: CMExplosionEffect
+ - type: InsideEntityStorage
+ - uid: 8319
+ components:
+ - type: Transform
+ parent: 8172
+ - type: Physics
+ canCollide: False
+ - type: CMExplosionEffect
+ - type: InsideEntityStorage
- uid: 15266
components:
- type: Transform
@@ -100578,6 +100812,22 @@ entities:
pos: -10.592361,-38.446224
parent: 2
- type: CMExplosionEffect
+ - uid: 18191
+ components:
+ - type: Transform
+ parent: 18175
+ - type: Physics
+ canCollide: False
+ - type: CMExplosionEffect
+ - type: InsideEntityStorage
+ - uid: 18281
+ components:
+ - type: Transform
+ parent: 18175
+ - type: Physics
+ canCollide: False
+ - type: CMExplosionEffect
+ - type: InsideEntityStorage
- proto: NitrousOxideCanister
entities:
- uid: 15268
@@ -100786,6 +101036,22 @@ entities:
parent: 2
- proto: OxygenTankFilled
entities:
+ - uid: 8175
+ components:
+ - type: Transform
+ parent: 8172
+ - type: Physics
+ canCollide: False
+ - type: CMExplosionEffect
+ - type: InsideEntityStorage
+ - uid: 8197
+ components:
+ - type: Transform
+ parent: 8172
+ - type: Physics
+ canCollide: False
+ - type: CMExplosionEffect
+ - type: InsideEntityStorage
- uid: 15303
components:
- type: Transform
@@ -100822,6 +101088,22 @@ entities:
pos: -60.549812,45.626915
parent: 2
- type: CMExplosionEffect
+ - uid: 18280
+ components:
+ - type: Transform
+ parent: 18175
+ - type: Physics
+ canCollide: False
+ - type: CMExplosionEffect
+ - type: InsideEntityStorage
+ - uid: 18282
+ components:
+ - type: Transform
+ parent: 18175
+ - type: Physics
+ canCollide: False
+ - type: CMExplosionEffect
+ - type: InsideEntityStorage
- proto: PackPaperRollingFilters
entities:
- uid: 15309
@@ -100910,6 +101192,13 @@ entities:
- type: Transform
pos: 0.5,34.5
parent: 2
+- proto: PaintVend
+ entities:
+ - uid: 22196
+ components:
+ - type: Transform
+ pos: 29.5,33.5
+ parent: 2
- proto: PaladinCircuitBoard
entities:
- uid: 15323
@@ -101737,13 +102026,6 @@ entities:
- type: Transform
pos: -36.5,57.5
parent: 2
-- proto: PosterContrabandBustyBackdoorExoBabes6
- entities:
- - uid: 15470
- components:
- - type: Transform
- pos: -31.5,14.5
- parent: 2
- proto: PosterContrabandClown
entities:
- uid: 15471
@@ -102958,20 +103240,6 @@ entities:
- type: Transform
pos: -8.5,46.5
parent: 2
-- proto: PowerCellSmall
- entities:
- - uid: 15657
- components:
- - type: Transform
- pos: -27.504559,56.49509
- parent: 2
- - type: CMExplosionEffect
- - uid: 15658
- components:
- - type: Transform
- pos: -27.504559,56.68259
- parent: 2
- - type: CMExplosionEffect
- proto: Poweredlight
entities:
- uid: 15659
@@ -105178,6 +105446,18 @@ entities:
parent: 2
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 17452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,58.5
+ parent: 2
+ - uid: 21850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,58.5
+ parent: 2
- proto: PoweredlightLED
entities:
- uid: 15959
@@ -105344,13 +105624,6 @@ entities:
powerLoad: 0
- proto: PoweredSmallLight
entities:
- - uid: 15983
- components:
- - type: Transform
- pos: -40.5,60.5
- parent: 2
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 15984
components:
- type: Transform
@@ -106771,6 +107044,11 @@ entities:
parent: 2
- proto: Rack
entities:
+ - uid: 15143
+ components:
+ - type: Transform
+ pos: -38.5,53.5
+ parent: 2
- uid: 16175
components:
- type: Transform
@@ -106801,16 +107079,6 @@ entities:
- type: Transform
pos: -32.5,29.5
parent: 2
- - uid: 16181
- components:
- - type: Transform
- pos: -41.5,54.5
- parent: 2
- - uid: 16182
- components:
- - type: Transform
- pos: -37.5,55.5
- parent: 2
- uid: 16183
components:
- type: Transform
@@ -107077,6 +107345,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -29.5,-57.5
parent: 2
+ - uid: 22200
+ components:
+ - type: Transform
+ pos: -41.5,60.5
+ parent: 2
- proto: RadioHandheld
entities:
- uid: 16236
@@ -107174,6 +107447,11 @@ entities:
parent: 2
- proto: RandomArtifactSpawner
entities:
+ - uid: 9564
+ components:
+ - type: Transform
+ pos: 23.5,-4.5
+ parent: 2
- uid: 16252
components:
- type: Transform
@@ -107194,6 +107472,11 @@ entities:
- type: Transform
pos: 41.5,13.5
parent: 2
+ - uid: 22184
+ components:
+ - type: Transform
+ pos: 41.5,12.5
+ parent: 2
- proto: RandomBoard
entities:
- uid: 16256
@@ -107618,6 +107901,11 @@ entities:
- type: Transform
pos: 35.5,32.5
parent: 2
+ - uid: 22188
+ components:
+ - type: Transform
+ pos: 33.5,34.5
+ parent: 2
- proto: RandomVendingSnacks
entities:
- uid: 16336
@@ -107650,12 +107938,10 @@ entities:
- type: Transform
pos: -48.5,21.5
parent: 2
-- proto: RCD
- entities:
- - uid: 16342
+ - uid: 22187
components:
- type: Transform
- pos: -15.481125,-35.377903
+ pos: 24.5,40.5
parent: 2
- proto: RCDAmmo
entities:
@@ -108662,12 +108948,6 @@ entities:
- type: Transform
pos: -32.5,61.5
parent: 2
- - uid: 16536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,58.5
- parent: 2
- uid: 16537
components:
- type: Transform
@@ -109024,12 +109304,6 @@ entities:
- type: Transform
pos: -3.5,43.5
parent: 2
- - uid: 16607
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,60.5
- parent: 2
- uid: 16608
components:
- type: Transform
@@ -111366,11 +111640,6 @@ entities:
- type: Transform
pos: 1.5,76.5
parent: 2
- - uid: 17064
- components:
- - type: Transform
- pos: -37.5,61.5
- parent: 2
- uid: 17065
components:
- type: Transform
@@ -111662,18 +111931,26 @@ entities:
- type: Transform
pos: -42.32744,-20.937243
parent: 2
-- proto: SecurityTechFab
+- proto: SecBreachingHammer
entities:
- - uid: 17120
+ - uid: 8131
components:
- type: Transform
- pos: -39.5,54.5
+ pos: -41.5,60.5
+ parent: 2
+ - uid: 21848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,60.5
+ parent: 2
+- proto: SecurityTechFab
+ entities:
+ - uid: 4120
+ components:
+ - type: Transform
+ pos: -38.5,55.5
parent: 2
- - type: MaterialStorage
- materialWhiteList:
- - Glass
- - Plastic
- - Steel
- proto: SeedExtractor
entities:
- uid: 17121
@@ -111693,6 +111970,11 @@ entities:
parent: 2
- proto: SheetGlass
entities:
+ - uid: 14607
+ components:
+ - type: Transform
+ pos: -38.5,55.5
+ parent: 2
- uid: 17124
components:
- type: Transform
@@ -111795,6 +112077,11 @@ entities:
- type: Transform
pos: 3.4094772,76.43967
parent: 2
+ - uid: 21833
+ components:
+ - type: Transform
+ pos: -38.5,55.5
+ parent: 2
- proto: SheetRGlass
entities:
- uid: 17142
@@ -111819,10 +112106,10 @@ entities:
parent: 2
- proto: SheetSteel
entities:
- - uid: 17146
+ - uid: 8169
components:
- type: Transform
- pos: -37.50003,55.530113
+ pos: -38.5,55.5
parent: 2
- uid: 17147
components:
@@ -111920,6 +112207,14 @@ entities:
- type: Transform
pos: -10.5,6.5
parent: 2
+- proto: ShotGunCabinetFilled
+ entities:
+ - uid: 22203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,54.5
+ parent: 2
- proto: Shovel
entities:
- uid: 17165
@@ -113129,9 +113424,6 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 968:
- - - Pressed
- - Toggle
986:
- - Pressed
- Toggle
@@ -113197,6 +113489,11 @@ entities:
parent: 2
- proto: SignBarbershop
entities:
+ - uid: 7776
+ components:
+ - type: Transform
+ pos: -37.5,20.5
+ parent: 2
- uid: 17304
components:
- type: Transform
@@ -114109,11 +114406,6 @@ entities:
- type: Transform
pos: -36.5,45.5
parent: 2
- - uid: 17452
- components:
- - type: Transform
- pos: -39.5,57.5
- parent: 2
- proto: SignSecureSmallRed
entities:
- uid: 17453
@@ -114126,6 +114418,11 @@ entities:
- type: Transform
pos: -40.5,61.5
parent: 2
+ - uid: 22199
+ components:
+ - type: Transform
+ pos: -38.5,61.5
+ parent: 2
- proto: SignSecurity
entities:
- uid: 17455
@@ -116212,6 +116509,11 @@ entities:
parent: 2
- proto: SpawnPointJanitor
entities:
+ - uid: 8130
+ components:
+ - type: Transform
+ pos: -31.5,8.5
+ parent: 2
- uid: 17840
components:
- type: Transform
@@ -116330,6 +116632,11 @@ entities:
parent: 2
- proto: SpawnPointParamedic
entities:
+ - uid: 13518
+ components:
+ - type: Transform
+ pos: -13.5,-16.5
+ parent: 2
- uid: 17860
components:
- type: Transform
@@ -116610,11 +116917,6 @@ entities:
- type: Transform
pos: -31.091824,6.5991406
parent: 2
- - uid: 17908
- components:
- - type: Transform
- pos: -52.02038,53.73549
- parent: 2
- uid: 17909
components:
- type: Transform
@@ -116630,6 +116932,11 @@ entities:
- type: Transform
pos: -42.623276,26.681374
parent: 2
+ - uid: 21851
+ components:
+ - type: Transform
+ pos: -51.833473,53.466602
+ parent: 2
- proto: Stairs
entities:
- uid: 17912
@@ -117428,17 +117735,89 @@ entities:
- type: Transform
pos: 29.5,14.5
parent: 2
-- proto: SuitStorageSec
+- proto: SuitStorageSecSunrise
entities:
- - uid: 18040
+ - uid: 8172
components:
- type: Transform
- pos: -38.5,56.5
+ pos: -37.5,59.5
parent: 2
- - uid: 18041
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 8342
+ - 8319
+ - 8301
+ - 8197
+ - 8175
+ - 8174
+ - 8173
+ - uid: 18175
components:
- type: Transform
- pos: -40.5,56.5
+ pos: -37.5,60.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 18472
+ - 18434
+ - 18282
+ - 18281
+ - 18280
+ - 18272
+ - 18191
+ - uid: 21772
+ components:
+ - type: Transform
+ pos: -28.5,56.5
+ parent: 2
+ - uid: 21830
+ components:
+ - type: Transform
+ pos: -27.5,56.5
parent: 2
- proto: SuitStorageWarden
entities:
@@ -118574,11 +118953,6 @@ entities:
parent: 2
- proto: SurveillanceCameraRouterSecurity
entities:
- - uid: 18175
- components:
- - type: Transform
- pos: -37.5,56.5
- parent: 2
- uid: 18176
components:
- type: Transform
@@ -118690,17 +119064,6 @@ entities:
rot: 3.141592653589793 rad
pos: 38.5,41.5
parent: 2
- - uid: 18191
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,56.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Armory
- uid: 18192
components:
- type: Transform
@@ -118858,6 +119221,12 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Lawyer's Office
+ - uid: 22210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,60.5
+ parent: 2
- proto: SurveillanceCameraService
entities:
- uid: 18207
@@ -119283,11 +119652,6 @@ entities:
- type: Transform
pos: -41.5,49.5
parent: 2
- - uid: 18272
- components:
- - type: Transform
- pos: -38.5,60.5
- parent: 2
- uid: 18273
components:
- type: Transform
@@ -119323,21 +119687,6 @@ entities:
- type: Transform
pos: -27.5,58.5
parent: 2
- - uid: 18280
- components:
- - type: Transform
- pos: -27.5,57.5
- parent: 2
- - uid: 18281
- components:
- - type: Transform
- pos: -27.5,56.5
- parent: 2
- - uid: 18282
- components:
- - type: Transform
- pos: -28.5,56.5
- parent: 2
- uid: 18283
components:
- type: Transform
@@ -120106,11 +120455,6 @@ entities:
- type: Transform
pos: -32.5,-36.5
parent: 2
- - uid: 18434
- components:
- - type: Transform
- pos: -37.5,60.5
- parent: 2
- uid: 18435
components:
- type: Transform
@@ -120305,16 +120649,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -20.5,-10.5
parent: 2
- - uid: 18472
- components:
- - type: Transform
- pos: -52.5,52.5
- parent: 2
- - uid: 18473
- components:
- - type: Transform
- pos: -52.5,53.5
- parent: 2
- uid: 18474
components:
- type: Transform
@@ -120624,11 +120958,6 @@ entities:
- type: Transform
pos: -42.5,45.5
parent: 2
- - uid: 18534
- components:
- - type: Transform
- pos: -39.5,56.5
- parent: 2
- uid: 18535
components:
- type: Transform
@@ -121638,14 +121967,6 @@ entities:
- type: Transform
pos: -60.5,-63.5
parent: 2
-- proto: TargetClown
- entities:
- - uid: 18736
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,59.5
- parent: 2
- proto: TegCenter
entities:
- uid: 18737
@@ -121736,6 +122057,16 @@ entities:
parent: 2
- proto: TintedWindow
entities:
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: -38.5,56.5
+ parent: 2
+ - uid: 17908
+ components:
+ - type: Transform
+ pos: -37.5,21.5
+ parent: 2
- uid: 18749
components:
- type: Transform
@@ -121826,6 +122157,26 @@ entities:
- type: Transform
pos: 10.5,-14.5
parent: 2
+ - uid: 21841
+ components:
+ - type: Transform
+ pos: -40.5,56.5
+ parent: 2
+ - uid: 22189
+ components:
+ - type: Transform
+ pos: -41.5,56.5
+ parent: 2
+ - uid: 22195
+ components:
+ - type: Transform
+ pos: -37.5,23.5
+ parent: 2
+ - uid: 22206
+ components:
+ - type: Transform
+ pos: -37.5,56.5
+ parent: 2
- proto: ToiletDirtyWater
entities:
- uid: 18767
@@ -121918,11 +122269,6 @@ entities:
- type: Transform
pos: 0.47260857,19.565884
parent: 2
- - uid: 18782
- components:
- - type: Transform
- pos: -28.4642,56.587437
- parent: 2
- uid: 18783
components:
- type: Transform
@@ -122573,15 +122919,10 @@ entities:
parent: 2
- proto: VendingMachineCoffeeMigrateUnderwear
entities:
- - uid: 18884
+ - uid: 22197
components:
- type: Transform
- pos: 33.5,34.5
- parent: 2
- - uid: 18885
- components:
- - type: Transform
- pos: 24.5,40.5
+ pos: 30.5,33.5
parent: 2
- proto: VendingMachineCola
entities:
@@ -122629,10 +122970,10 @@ entities:
parent: 2
- proto: VendingMachineDonutMigrateKinko
entities:
- - uid: 18892
+ - uid: 22198
components:
- type: Transform
- pos: 31.5,39.5
+ pos: 31.5,33.5
parent: 2
- proto: VendingMachineEngiDrobe
entities:
@@ -122770,11 +123111,21 @@ entities:
parent: 2
- proto: VendingMachineSec
entities:
+ - uid: 8166
+ components:
+ - type: Transform
+ pos: -39.5,60.5
+ parent: 2
- uid: 18913
components:
- type: Transform
pos: -29.5,60.5
parent: 2
+ - uid: 22201
+ components:
+ - type: Transform
+ pos: -41.5,55.5
+ parent: 2
- proto: VendingMachineSecDrobe
entities:
- uid: 18914
@@ -123017,6 +123368,51 @@ entities:
parent: 2
- proto: WallReinforced
entities:
+ - uid: 15008
+ components:
+ - type: Transform
+ pos: -37.5,61.5
+ parent: 2
+ - uid: 15079
+ components:
+ - type: Transform
+ pos: -37.5,62.5
+ parent: 2
+ - uid: 15086
+ components:
+ - type: Transform
+ pos: -36.5,62.5
+ parent: 2
+ - uid: 15087
+ components:
+ - type: Transform
+ pos: -38.5,62.5
+ parent: 2
+ - uid: 15088
+ components:
+ - type: Transform
+ pos: -41.5,62.5
+ parent: 2
+ - uid: 15090
+ components:
+ - type: Transform
+ pos: -39.5,62.5
+ parent: 2
+ - uid: 15203
+ components:
+ - type: Transform
+ pos: -40.5,62.5
+ parent: 2
+ - uid: 18040
+ components:
+ - type: Transform
+ pos: -37.5,24.5
+ parent: 2
+ - uid: 18534
+ components:
+ - type: Transform
+ pos: -36.5,60.5
+ parent: 2
- uid: 18954
components:
- type: Transform
@@ -124079,31 +124475,6 @@ entities:
- type: Transform
pos: -36.5,57.5
parent: 2
- - uid: 19165
- components:
- - type: Transform
- pos: -37.5,57.5
- parent: 2
- - uid: 19166
- components:
- - type: Transform
- pos: -38.5,57.5
- parent: 2
- - uid: 19167
- components:
- - type: Transform
- pos: -39.5,57.5
- parent: 2
- - uid: 19168
- components:
- - type: Transform
- pos: -40.5,57.5
- parent: 2
- - uid: 19169
- components:
- - type: Transform
- pos: -41.5,57.5
- parent: 2
- uid: 19170
components:
- type: Transform
@@ -131611,6 +131982,21 @@ entities:
- type: Transform
pos: -33.5,-57.5
parent: 2
+ - uid: 22192
+ components:
+ - type: Transform
+ pos: -36.5,58.5
+ parent: 2
+ - uid: 22193
+ components:
+ - type: Transform
+ pos: -36.5,59.5
+ parent: 2
+ - uid: 22194
+ components:
+ - type: Transform
+ pos: -37.5,20.5
+ parent: 2
- proto: WallSolid
entities:
- uid: 20644
@@ -137375,12 +137761,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,20.5
parent: 2
- - uid: 21772
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,24.5
- parent: 2
- uid: 21773
components:
- type: Transform
@@ -137423,25 +137803,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,20.5
parent: 2
- - uid: 21780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,20.5
- parent: 2
- uid: 21781
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -43.5,22.5
parent: 2
-- proto: WardrobeBlackFilled
- entities:
- - uid: 21782
- components:
- - type: Transform
- pos: 31.5,33.5
- parent: 2
- proto: WardrobeBlueFilled
entities:
- uid: 21783
@@ -137652,20 +138019,6 @@ entities:
showEnts: False
occludes: True
ent: null
-- proto: WardrobeGreenFilled
- entities:
- - uid: 21790
- components:
- - type: Transform
- pos: 30.5,33.5
- parent: 2
-- proto: WardrobeMixedFilled
- entities:
- - uid: 21791
- components:
- - type: Transform
- pos: 29.5,33.5
- parent: 2
- proto: WardrobePinkFilled
entities:
- uid: 21792
@@ -138050,10 +138403,10 @@ entities:
parent: 2
- proto: WeaponCapacitorRecharger
entities:
- - uid: 21830
+ - uid: 8017
components:
- type: Transform
- pos: -37.5,60.5
+ pos: -27.5,58.5
parent: 2
- uid: 21831
components:
@@ -138069,13 +138422,6 @@ entities:
parent: 2
- type: Physics
canCollide: False
- - uid: 21833
- components:
- - type: Transform
- pos: -27.5,57.5
- parent: 2
- - type: Physics
- canCollide: False
- uid: 21834
components:
- type: Transform
@@ -138124,95 +138470,40 @@ entities:
parent: 2
- type: Physics
canCollide: False
-- proto: WeaponDisablerPractice
+- proto: WeaponEarthGovLaserPistol
entities:
- - uid: 21841
+ - uid: 8392
components:
- type: Transform
- pos: -38.42729,60.595303
- parent: 2
-- proto: WeaponEnergyGun
+ parent: 8363
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 8439
+ components:
+ - type: Transform
+ parent: 8363
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponEarthGovLaserRifle
entities:
- - uid: 14601
+ - uid: 8486
components:
- type: Transform
- parent: 14600
- - type: Item
- heldPrefix: disabler
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 60
- hitscanProto: BulletDisabler
- projectileProto: null
+ parent: 8363
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - type: HitscanBatteryAmmoProvider
- fireCost: 60
- proto: BulletDisabler
- - uid: 14602
+- proto: WeaponEarthGovLaserSniper
+ entities:
+ - uid: 8387
components:
- type: Transform
- parent: 14600
- - type: Item
- heldPrefix: disabler
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 60
- hitscanProto: BulletDisabler
- projectileProto: null
+ parent: 8363
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - type: HitscanBatteryAmmoProvider
- fireCost: 60
- proto: BulletDisabler
- - uid: 14603
- components:
- - type: Transform
- parent: 14600
- - type: Item
- heldPrefix: disabler
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 60
- hitscanProto: BulletDisabler
- projectileProto: null
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: HitscanBatteryAmmoProvider
- fireCost: 60
- proto: BulletDisabler
- - uid: 14604
- components:
- - type: Transform
- parent: 14600
- - type: Item
- heldPrefix: disabler
- - type: EnergyGunFireModes
- currentFireMode:
- state: disabler
- name: energy-gun-disable
- shotType: Hitscan
- fireCost: 60
- hitscanProto: BulletDisabler
- projectileProto: null
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - type: HitscanBatteryAmmoProvider
- fireCost: 60
- proto: BulletDisabler
- proto: WeaponEnergyGunMini
entities:
- uid: 21842
@@ -138329,47 +138620,31 @@ entities:
- type: Transform
pos: -5.5,88.5
parent: 2
-- proto: WeaponLaserCarbinePractice
+- proto: WeaponIONRifle
entities:
- - uid: 21846
+ - uid: 8347
components:
- type: Transform
- pos: -38.316597,60.345554
+ pos: -41.49372,60.1598
parent: 2
-- proto: WeaponPistolDeagle
+- proto: WeaponLaserCannon
entities:
- - uid: 15142
+ - uid: 8364
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.599804,50.391735
- parent: 2
-- proto: WeaponShotgunTrenchgun4034
+ parent: 8363
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponLaserCarbine
entities:
- - uid: 21847
+ - uid: 8461
components:
- type: Transform
- pos: -41.42977,54.350964
- parent: 2
- - type: BallisticAmmoProvider
- unspawnedCount: 4
- - uid: 21848
- components:
- - type: Transform
- pos: -41.42977,54.507214
- parent: 2
- - type: BallisticAmmoProvider
- unspawnedCount: 4
- - uid: 21849
- components:
- - type: Transform
- pos: -41.445473,54.20003
- parent: 2
- - uid: 21850
- components:
- - type: Transform
- pos: -41.445473,54.621906
- parent: 2
+ parent: 8363
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: Welder
entities:
- uid: 21856
@@ -139348,6 +139623,22 @@ entities:
parent: 2
- proto: WindowReinforcedDirectional
entities:
+ - uid: 8132
+ components:
+ - type: Transform
+ pos: -41.5,59.5
+ parent: 2
+ - uid: 8145
+ components:
+ - type: Transform
+ pos: -37.5,59.5
+ parent: 2
+ - uid: 15220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,55.5
+ parent: 2
- uid: 22028
components:
- type: Transform
@@ -139432,24 +139723,12 @@ entities:
rot: 3.141592653589793 rad
pos: -52.5,19.5
parent: 2
- - uid: 22043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,58.5
- parent: 2
- uid: 22044
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 43.5,40.5
parent: 2
- - uid: 22045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,60.5
- parent: 2
- uid: 22046
components:
- type: Transform
@@ -140144,6 +140423,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -18.5,42.5
parent: 2
+ - uid: 22182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,55.5
+ parent: 2
- proto: Wirecutter
entities:
- uid: 22166
diff --git a/Resources/Maps/_Sunrise/Station/plasma.yml b/Resources/Maps/_Sunrise/Station/plasma.yml
index c31292a73f..32a43c1a2f 100644
--- a/Resources/Maps/_Sunrise/Station/plasma.yml
+++ b/Resources/Maps/_Sunrise/Station/plasma.yml
@@ -1,6 +1,17 @@
meta:
- format: 6
- postmapinit: false
+ format: 7
+ category: Map
+ engineVersion: 255.1.0
+ forkId: ""
+ forkVersion: ""
+ time: 05/07/2025 20:28:50
+ entityCount: 27586
+maps:
+- 1
+grids:
+- 2
+orphans: []
+nullspace: []
tilemap:
0: Space
28: FloorArcadeRed
@@ -81,15 +92,15 @@ entities:
chunks:
-10,-4:
ind: -10,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAB
version: 6
-1,0:
ind: -1,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAADAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAAGBwAAAAAGAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAMBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAACgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA
version: 6
0,-2:
ind: 0,-2
@@ -101,207 +112,207 @@ entities:
version: 6
-5,-5:
ind: -5,-5
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAJBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAHBwAAAAAABwAAAAAGBwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: BwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAACwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALAgAAAAAAAgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAADBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAABwAAAAALAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAALAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAAABwAAAAAFgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAKCwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAAwAAAAACBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACgwAAAAAABAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: gwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAEBwAAAAAGKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAA
+ tiles: gwAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBQAAAAADBQAAAAABBQAAAAAABQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAACBwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAD
version: 6
-3,-1:
ind: -3,-1
- tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAADBAAAAAABAwAAAAACAwAAAAABgwAAAAAABQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAACBAAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACAwAAAAACBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADgwAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAACgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAABAAAAAAAAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAADgwAAAAAAAwAAAAACgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAAABAAAAAADBAAAAAADAwAAAAAAAwAAAAACgwAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAABBAAAAAADBAAAAAABAwAAAAABAwAAAAABgwAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAABBAAAAAACBAAAAAADAwAAAAACAwAAAAAAgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAACBAAAAAADBAAAAAADAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAAABAAAAAACBAAAAAACAwAAAAACAwAAAAADgwAAAAAAAwAAAAABgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,0:
ind: -6,0
- tiles: KgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAAwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAAwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAAwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAACgwAAAAAAAwAAAAAABAAAAAAABAAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAAwAAAAACgwAAAAAAAwAAAAACBAAAAAACBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAAAAwAAAAABgwAAAAAAAwAAAAABBAAAAAADBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBAAAAAAABAAAAAAAAwAAAAACgwAAAAAAAwAAAAADBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBAAAAAADBAAAAAABAwAAAAABgwAAAAAAAwAAAAABBAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAADAwAAAAABgwAAAAAAAwAAAAADBAAAAAABBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAABCgAAAAAACgAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAADBAAAAAADCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAAwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAAwAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAAwAAAAADDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAAAgwAAAAAAAwAAAAACBAAAAAABBAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAADgwAAAAAAAwAAAAACBAAAAAACBAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAABBAAAAAABAwAAAAACgwAAAAAAAwAAAAADBAAAAAADBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBAAAAAABBAAAAAAAAwAAAAADgwAAAAAAAwAAAAADBAAAAAACBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAwAAAAABBAAAAAACBAAAAAABAwAAAAADgwAAAAAAAwAAAAACBAAAAAAABAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAABBAAAAAABAwAAAAADgwAAAAAAAwAAAAADBAAAAAABBAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAABBAAAAAABCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAACgAAAAAACgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAADBQAAAAADgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAACgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAACAwAAAAABBQAAAAAAAwAAAAACAwAAAAABAwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAAwAAAAABAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAACwAAAAAAAwAAAAACAwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAACwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAADCwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAABBQAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAACBQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACBQAAAAAB
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAADBQAAAAADgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAABgwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBQAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAACgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAABgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAABBQAAAAAAAwAAAAABAwAAAAACAwAAAAADgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAABBQAAAAABBQAAAAABCwAAAAAAAwAAAAAAAwAAAAACgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAADBQAAAAADBQAAAAABCwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAABBQAAAAABBQAAAAADCwAAAAAAAwAAAAABAwAAAAACgwAAAAAABQAAAAACBQAAAAABgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACgwAAAAAAAwAAAAABAwAAAAADAwAAAAABBQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAAC
version: 6
-4,0:
ind: -4,0
- tiles: BAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAABgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAACIwAAAAAAIwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABIwAAAAAAIwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAADgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAABgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAACBQAAAAADgwAAAAAABAAAAAACBAAAAAADBAAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAADIwAAAAAAIwAAAAADAwAAAAADAwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADIwAAAAACIwAAAAACAwAAAAABAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-1:
ind: -5,-1
- tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAADBwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAACBwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAACwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADCwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAHAAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABAAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAIBwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAKBwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAACBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADCwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABCwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABCwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABgwAAAAAAHAAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAABAAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAALAAAAAAALAAAAAAALAAAAAAAgwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADIwAAAAAAIwAAAAAAAwAAAAADgwAAAAAAgwAAAAAALAAAAAAALAAAAAAALAAAAAAAgwAAAAAALAAAAAAAIwAAAAAALAAAAAAALAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADIwAAAAAAIwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAALAAAAAAABQAAAAAABQAAAAAAgwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAABgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAACgwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAALAAAAAACLAAAAAABLAAAAAACAwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADAwAAAAAAAwAAAAADAwAAAAABIwAAAAACIwAAAAADAwAAAAACgwAAAAAAgwAAAAAALAAAAAAALAAAAAABLAAAAAADgwAAAAAALAAAAAAAIwAAAAADLAAAAAADLAAAAAABgwAAAAAAAwAAAAABAwAAAAABIwAAAAADIwAAAAADAwAAAAADgwAAAAAAgwAAAAAALAAAAAADBQAAAAADBQAAAAAAgwAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAABwAAAAABBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAABAAAAAAAABwAAAAAABwAAAAAGBwAAAAAHAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-1:
ind: -6,-1
- tiles: AgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAACQAAAAAACQAAAAAAAwAAAAAACQAAAAAACQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAALKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAACQAAAAAACQAAAAAAAwAAAAAACQAAAAAACQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAKgAAAAALKgAAAAAEKgAAAAAAKgAAAAAAgwAAAAAABwAAAAALgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAACQAAAAAACQAAAAAAAwAAAAAACQAAAAAACQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAAGKgAAAAAAgwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAMKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAADCQAAAAAACQAAAAAAAwAAAAADCQAAAAAACQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAACQAAAAAACQAAAAAAAwAAAAABCQAAAAAACQAAAAAAAwAAAAABgwAAAAAAgwAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAACQAAAAAACQAAAAAAAwAAAAABCQAAAAAACQAAAAAAAwAAAAACgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,-4:
ind: -6,-4
- tiles: GwAAAAAAGwAAAAAAGwAAAAAALwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAFBwAAAAAABwAAAAAJGwAAAAAAGwAAAAAAGwAAAAAALwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAALwAAAAAALwAAAAAALwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAALwAAAAAALwAAAAAALwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAALwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAJBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: BwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAIgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAAABAAAAAAAMwAAAAAAMwAAAAAABAAAAAAABAAAAAACCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAFBwAAAAABgwAAAAAACgAAAAAACgAAAAAABAAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAADBAAAAAABBwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACBAAAAAABBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAJBwAAAAAABwAAAAAABwAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAAADQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAABDQAAAAABDQAAAAAADQAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAACCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAACDQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAAADQAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADDQAAAAABAwAAAAAADQAAAAAADQAAAAACDQAAAAADBAAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAAABAAAAAACBAAAAAACBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAABBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADAwAAAAAADQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADAwAAAAACBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADAwAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAAAwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAADBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAAADQAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAABwAAAAALBwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAABDQAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAABCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAACDQAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAADQAAAAACgwAAAAAADQAAAAABDQAAAAABDQAAAAADBAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAABDQAAAAABAwAAAAABDQAAAAACDQAAAAADDQAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAABDQAAAAADDQAAAAAADQAAAAACDQAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABBAAAAAADBAAAAAAABAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAACDQAAAAABDQAAAAAADQAAAAACgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACDQAAAAADAwAAAAABDQAAAAAADQAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAAAAwAAAAACBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAAAAwAAAAAADQAAAAADDQAAAAADgwAAAAAADQAAAAACDQAAAAAADQAAAAAAAwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAABDQAAAAABgwAAAAAADQAAAAAADQAAAAACDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAADDQAAAAACgwAAAAAADQAAAAAADQAAAAABDQAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: AgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAADgwAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAABgwAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMQAAAAAAgwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMQAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMQAAAAAAgwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA
+ tiles: AgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAAADQAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAACDQAAAAADgwAAAAAABQAAAAAABQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMQAAAAABgwAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAgwAAAAAABQAAAAABBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMQAAAAABBAAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADgwAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMQAAAAADgwAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAB
version: 6
-3,-3:
ind: -3,-3
- tiles: DgAAAAADDgAAAAACBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABAwAAAAABAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAADAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABAwAAAAADAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABDQAAAAADDQAAAAADDQAAAAABgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADDQAAAAADDQAAAAADDQAAAAABgwAAAAAABQAAAAACBQAAAAAAgwAAAAAADQAAAAAADQAAAAAAAwAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAABgwAAAAAADQAAAAAADQAAAAADAwAAAAADgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAADBQAAAAACgwAAAAAADQAAAAABDQAAAAAAAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAAA
+ tiles: DgAAAAACDgAAAAACBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAADDgAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACDgAAAAADBAAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAABAwAAAAADAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACDQAAAAAADQAAAAADDQAAAAACgwAAAAAABQAAAAAABQAAAAAAgwAAAAAADQAAAAAADQAAAAACAwAAAAACgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABgwAAAAAABQAAAAAABQAAAAAAgwAAAAAADQAAAAADDQAAAAACAwAAAAABgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABgwAAAAAABQAAAAAABQAAAAACgwAAAAAADQAAAAAADQAAAAADAwAAAAACgwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAADDQAAAAACDQAAAAAD
version: 6
-4,-3:
ind: -4,-3
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAADBwAAAAAHBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAABBwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAADDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAAAAwAAAAAAAwAAAAAABAAAAAABBAAAAAACBAAAAAABAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAADDgAAAAAADgAAAAAADgAAAAACDgAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAACDgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAMAgAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAABBwAAAAAGBwAAAAAABwAAAAALBwAAAAAGBwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAADDQAAAAADDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAAAAwAAAAADAwAAAAABBAAAAAADBAAAAAADBAAAAAACAwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAABgwAAAAAAgwAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADQAAAAAAgwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADQAAAAACgwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADQAAAAABgwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAABQAAAAACBQAAAAACgwAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAACBQAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAACBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAAA
+ tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADQAAAAABgwAAAAAAHQAAAAABHQAAAAADHQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABIAAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAADQAAAAABgwAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACgwAAAAAAAwAAAAABAwAAAAADgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADDQAAAAACgwAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACgwAAAAAAAwAAAAABAwAAAAABgwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAwAAAAABAwAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABAwAAAAAAAwAAAAACAwAAAAADgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAAABQAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAACgwAAAAAABAAAAAABgwAAAAAAgwAAAAAABQAAAAACBQAAAAABgwAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABgwAAAAAABAAAAAADBAAAAAACgwAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAAABQAAAAADBQAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAABAAAAAABBAAAAAABgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAABBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAACBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAACAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAADDgAAAAABDgAAAAAC
version: 6
-5,-2:
ind: -5,-2
- tiles: gwAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAACgwAAAAAABQAAAAAABQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAAABAAAAAABBAAAAAABgwAAAAAABQAAAAADBQAAAAAABQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAABgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAABAwAAAAAAAwAAAAABAwAAAAAABQAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACBAAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABCQAAAAAABAAAAAACBAAAAAACgwAAAAAABAAAAAADBAAAAAADBAAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAACCQAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAACBAAAAAABCwAAAAAABAAAAAABBAAAAAABAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ tiles: gwAAAAAABQAAAAABBQAAAAAABQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAABEQAAAAACEQAAAAADEQAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAABBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAADEQAAAAABEQAAAAAAEQAAAAACEQAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABwAAAAAJBwAAAAAAAgAAAAAABwAAAAAFgwAAAAAABQAAAAACBQAAAAAABQAAAAAAgwAAAAAABAAAAAADBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAHgwAAAAAABQAAAAABBQAAAAAABQAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAACAwAAAAABAwAAAAAAAwAAAAABBQAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAABAAAAAAABAAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAAACQAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAADBAAAAAABBAAAAAACAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAAACQAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACBAAAAAAABAAAAAACBAAAAAABCwAAAAAABAAAAAACBAAAAAACAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAABAAAAAACBAAAAAACBAAAAAABgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: BAAAAAACAwAAAAAAAwAAAAAAAwAAAAAABAAAAAACBAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAABBAAAAAABBAAAAAAAAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAAAwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAABAAAAAADBAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAABAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAACAAAAAAACAAAAAAACAAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAABAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAABAAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAABBAAAAAADBAAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAACBAAAAAADAwAAAAAABAAAAAADBAAAAAAAAwAAAAAAAwAAAAADAwAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACAwAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAAAAwAAAAACBAAAAAABBwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAABCwAAAAAACwAAAAAAgwAAAAAABAAAAAADBAAAAAADAwAAAAABAwAAAAABAwAAAAABBAAAAAABBwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBwAAAAAABwAAAAAJgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: BAAAAAABAwAAAAABAwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAABAwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAABAwAAAAABAwAAAAAABAAAAAABBAAAAAABBAAAAAACAwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABAwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAHgAAAAACMwAAAAAJMwAAAAACMwAAAAAAHgAAAAAABAAAAAAABAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAACBAAAAAAABAAAAAADAwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAABCAAAAAAACAAAAAAACAAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAADBAAAAAADBAAAAAACgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADBAAAAAACBAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAABBAAAAAACAwAAAAAABAAAAAADBAAAAAADAwAAAAABAwAAAAACAwAAAAAABAAAAAAABAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADBAAAAAADBAAAAAADAwAAAAADBAAAAAACBAAAAAAAAwAAAAAAAwAAAAACAwAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAABAwAAAAACBAAAAAACBAAAAAAAAwAAAAABAwAAAAAAAwAAAAABBAAAAAABBwAAAAAFgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBAAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-6,-2:
ind: -6,-2
- tiles: BAAAAAADLQAAAAAALQAAAAAALQAAAAAABAAAAAACBAAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABAAAAAAALQAAAAAALQAAAAAALQAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAABAAAAAACLQAAAAAALQAAAAAALQAAAAAABAAAAAADBAAAAAACgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACBAAAAAABLQAAAAAALQAAAAAALQAAAAAABAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAAwAAAAAAAwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABEgAAAAAAAwAAAAAAAwAAAAAAKwAAAAAAgwAAAAAAKwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAAwAAAAAAAwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BAAAAAACLQAAAAADLQAAAAABLQAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAABAAAAAABLQAAAAACLQAAAAACLQAAAAADBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAABAAAAAAALQAAAAABLQAAAAAALQAAAAABBAAAAAADBAAAAAACgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAABAAAAAAALQAAAAADLQAAAAAALQAAAAACBAAAAAAABAAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACBAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADBAAAAAABBAAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAACAwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAAAwAAAAAAAwAAAAADAwAAAAADKwAAAAAAgwAAAAAAKwAAAAAAgwAAAAAABAAAAAABgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADgwAAAAAAAwAAAAACAwAAAAABKwAAAAAAKwAAAAAAKwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADBAAAAAABBAAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-5,-4:
ind: -5,-4
- tiles: BwAAAAAJBwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAADQAAAAADBwAAAAADBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACBwAAAAAHBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: BwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADBwAAAAAHBwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAADQAAAAADBwAAAAAABwAAAAACCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACBwAAAAAABwAAAAAHCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-6,-3:
ind: -6,-3
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAACBwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADDwAAAAAADwAAAAAADwAAAAAABAAAAAABBAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACDwAAAAAADwAAAAAADwAAAAAABAAAAAACBAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACEQAAAAABEQAAAAACgwAAAAAAEQAAAAADEQAAAAAAEQAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAEQAAAAABEQAAAAABEQAAAAABgwAAAAAAEQAAAAACEQAAAAACEQAAAAABgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADGgAAAAAABQAAAAADgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAABBQAAAAAABQAAAAAAAwAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAADBAAAAAADBQAAAAABBQAAAAACAwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABQAAAAABBQAAAAACAwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAABAwAAAAAAAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAAABAAAAAACLQAAAAAALQAAAAAALQAAAAAABAAAAAAABAAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAAB
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAACDwAAAAAADwAAAAAADwAAAAAABAAAAAACBwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACDwAAAAAADwAAAAAADwAAAAAABAAAAAAABAAAAAACBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAAABAAAAAADBwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAADEQAAAAACEQAAAAACgwAAAAAAEQAAAAADEQAAAAABEQAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAEQAAAAADEQAAAAABEQAAAAAAgwAAAAAAEQAAAAACEQAAAAACEQAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACGgAAAAAABQAAAAACgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAAABAAAAAACBQAAAAAABQAAAAAAAwAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAACgwAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAACBQAAAAADBQAAAAAAAwAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABQAAAAAABQAAAAAAAwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAACgwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAACgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAgwAAAAAABQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADAwAAAAADAwAAAAACAwAAAAADgwAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAACBAAAAAADLQAAAAADLQAAAAACLQAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAABBQAAAAAB
version: 6
-5,-3:
ind: -5,-3
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAEBwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAALgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAECgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABgwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAADgwAAAAAAEQAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAACgwAAAAAABAAAAAABBAAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACBAAAAAAABAAAAAAC
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAALgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAAABQAAAAADBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAACgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACgwAAAAAAEQAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACgwAAAAAABAAAAAACBAAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAACEQAAAAABBAAAAAABBAAAAAAD
version: 6
-2,0:
ind: -2,0
- tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA
+ tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAALBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJ
version: 6
-2,-2:
ind: -2,-2
- tiles: AwAAAAACDQAAAAACDQAAAAAADQAAAAABCwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAACwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAACwAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAABCwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADAwAAAAABAwAAAAAADQAAAAABDQAAAAACDQAAAAACCwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABCwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAAAAwAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAABgwAAAAAAKAAAAAAAgwAAAAAAgwAAAAAABwAAAAALgwAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAACAwAAAAABDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAACgwAAAAAAKAAAAAAAKAAAAAABBwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAABgwAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAABBQAAAAADgwAAAAAADQAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACAwAAAAADDQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAAAwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAABgwAAAAAADQAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAABgwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AwAAAAADDQAAAAADDQAAAAAADQAAAAACCwAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAABDQAAAAADCwAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAABCwAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAABDQAAAAAACwAAAAAADQAAAAACDQAAAAABDQAAAAABDQAAAAADAwAAAAADAwAAAAABDQAAAAADDQAAAAABDQAAAAADCwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAADDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAACAwAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAACgwAAAAAAKAAAAAABgwAAAAAAgwAAAAAABwAAAAAFgwAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAAAAwAAAAACDQAAAAADDQAAAAADDQAAAAABDQAAAAACDQAAAAACgwAAAAAAKAAAAAAAKAAAAAAABwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAACDQAAAAAADQAAAAABDQAAAAABgwAAAAAAKAAAAAABKAAAAAACKAAAAAADKAAAAAACgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAABgwAAAAAADQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAABAwAAAAACDQAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAADAwAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAABBQAAAAACgwAAAAAADQAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADgwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAACwAAAAAAAwAAAAADgwAAAAAADQAAAAABDQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADAwAAAAABCwAAAAAAAwAAAAACAwAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAACgwAAAAAAAwAAAAABDQAAAAACDQAAAAACDQAAAAAAgwAAAAAACwAAAAAAAwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAADBwAAAAAIBwAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAABDQAAAAACgwAAAAAADQAAAAABDQAAAAABDQAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACgwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAABDQAAAAADgwAAAAAADQAAAAADDQAAAAADDQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAABgwAAAAAACwAAAAAAAwAAAAACgwAAAAAADQAAAAACDQAAAAADDQAAAAABgwAAAAAADQAAAAABDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAACAwAAAAADCwAAAAAAAwAAAAADAwAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAACgwAAAAAAAwAAAAACDQAAAAADDQAAAAACDQAAAAADgwAAAAAACwAAAAAAAwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: gwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAABAAAAAADBAAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAABDQAAAAADDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAAAwAAAAADAwAAAAACgwAAAAAADQAAAAAADQAAAAABDQAAAAACgwAAAAAADQAAAAABDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAABAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAAAwAAAAACAwAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAADQAAAAAADQAAAAAADQAAAAADgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABgwAAAAAA
+ tiles: gwAAAAAADQAAAAABDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAABAAAAAADBAAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAACAwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADgwAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAADQAAAAADDQAAAAACDQAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAABAwAAAAABAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACgwAAAAAAAwAAAAABAwAAAAACgwAAAAAADQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAACDQAAAAADDQAAAAADgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAADgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAAADQAAAAAADQAAAAABgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABgwAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAABgwAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAAAgwAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: AgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAABBwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADBQAAAAAAJAAAAAAFBQAAAAACJAAAAAACgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAABBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAABBQAAAAADBwAAAAAIAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAADJAAAAAACBQAAAAADJAAAAAABgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAJAAAAAAEBQAAAAADBQAAAAACJAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAABwAAAAAAJAAAAAAGJAAAAAADJAAAAAADgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAJgAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAACBAAAAAABBAAAAAADAwAAAAADgwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAADBAAAAAACBAAAAAADAwAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAJAAAAAABBQAAAAADBQAAAAABJAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAACBwAAAAAAJAAAAAAAJAAAAAAFJAAAAAAEgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAJgAAAAABgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAACBAAAAAABBAAAAAADAwAAAAACgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAABBAAAAAADBAAAAAACAwAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAADBAAAAAAABAAAAAADAwAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-4:
ind: -7,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAHBwAAAAALBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAALgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAKBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALAgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-7,-3:
ind: -7,-3
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAACgwAAAAAAAwAAAAACAwAAAAABBQAAAAABBQAAAAABBQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBQAAAAADBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAACAwAAAAABBQAAAAAABQAAAAACBQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAABBQAAAAACBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAABBQAAAAADgwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAJAgAAAAAAAgAAAAAABwAAAAAGgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAABAAAAAACGwAAAAAAGwAAAAAAGwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABAAAAAACGwAAAAAAGwAAAAAAGwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAAB
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADAwAAAAACBQAAAAADBQAAAAAABQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAACAwAAAAADBQAAAAABBQAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAACAwAAAAADBQAAAAACBQAAAAAABQAAAAACCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAADAwAAAAABBQAAAAABBQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAKgwAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAABBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAABBQAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAEgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAMAgAAAAAAAgAAAAAABwAAAAAJgwAAAAAAAwAAAAACAwAAAAABAwAAAAACgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAABBAAAAAACBAAAAAABGwAAAAADGwAAAAAAGwAAAAABgwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAABAAAAAABGwAAAAACGwAAAAADGwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAABAAAAAAD
version: 6
-7,-2:
ind: -7,-2
- tiles: GwAAAAAAGwAAAAAAGwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAMAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAABBwAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAABAAAAAAD
+ tiles: GwAAAAAAGwAAAAABGwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAAGwAAAAABGwAAAAABGwAAAAABgwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAADGwAAAAABGwAAAAAAGwAAAAAAgwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAABAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACgwAAAAAABAAAAAACgwAAAAAABwAAAAAGBwAAAAAFBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAEBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAACBwAAAAAAgwAAAAAABAAAAAAD
version: 6
-7,-1:
ind: -7,-1
- tiles: BAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACgwAAAAAABwAAAAALAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAACAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAAgwAAAAAABwAAAAAGBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAAgwAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABwAAAAAGBwAAAAAEAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKQAAAAAAKQAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAAgwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAJgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
+ tiles: BAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAgAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAEAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAALAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAAgwAAAAAABwAAAAAABwAAAAAKAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAABAAAAAADgwAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAABAAAAAADgwAAAAAABwAAAAAKBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAEKgAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKQAAAAAAKQAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAgwAAAAAAKgAAAAABKgAAAAAAKgAAAAAA
version: 6
-7,0:
ind: -7,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAHgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAFgwAAAAAABwAAAAAGBwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACBAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAALgwAAAAAABwAAAAAABwAAAAAHBwAAAAAKCgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBwAAAAAABwAAAAAABAAAAAAAgwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAAIgAAAAAC
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAALgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAFAgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAIgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAIgwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAEBwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAACBAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBwAAAAAEBwAAAAAABAAAAAABgwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAAAgwAAAAAABAAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAAAIgAAAAAB
version: 6
-9,-4:
ind: -9,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAACBQAAAAABBQAAAAABgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACBQAAAAACJAAAAAAGgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAIwAAAAABIwAAAAACIwAAAAABBQAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAADBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAACBAAAAAADBAAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAGBQAAAAACBQAAAAACBQAAAAABgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABBQAAAAABJAAAAAADgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACIwAAAAACIwAAAAADIwAAAAAABQAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAADgwAAAAAABAAAAAABBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAAABAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAADgwAAAAAABAAAAAADBAAAAAADBAAAAAAD
version: 6
-8,-2:
ind: -8,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAFgwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIAgAAAAAAAgAAAAAABwAAAAAGgwAAAAAAGwAAAAAAGwAAAAAAgwAAAAAAGwAAAAADGwAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGwAAAAACGwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAJAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAACBQAAAAACgwAAAAAABwAAAAAKAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAB
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGwAAAAABGwAAAAAAgwAAAAAAGwAAAAABGwAAAAABBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGwAAAAADGwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAACgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAAABQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAC
version: 6
-8,-1:
ind: -8,-1
- tiles: BQAAAAABBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAM
+ tiles: BQAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAKBwAAAAAAAgAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAACCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAAABAAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAA
version: 6
-8,0:
ind: -8,0
- tiles: gwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAHgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAMgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,1:
ind: -6,1
- tiles: BAAAAAACIgAAAAABBAAAAAABCgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAABCgAAAAAACgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAACCgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAAACgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAACgAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAIGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAKGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACAwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABAwAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA
+ tiles: BAAAAAACIgAAAAACBAAAAAACCgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABIgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADIgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAAIgAAAAADCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAHBwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAGGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADAwAAAAADgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACAwAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAABgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAAAAwAAAAACgwAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAABQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA
version: 6
-6,2:
ind: -6,2
- tiles: BAAAAAAABAAAAAABBAAAAAABAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAAABAAAAAADBAAAAAACAwAAAAABAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAAABAAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAADAwAAAAACAwAAAAADAwAAAAADgwAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAACAwAAAAABAwAAAAACAwAAAAACgwAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: BAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACFQAAAAAAFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAJFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAADJQAAAAACJQAAAAAAJQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAABJQAAAAADJQAAAAABJQAAAAABJQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAACJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAADJQAAAAACJQAAAAADJQAAAAABJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAHBwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-5:
ind: -7,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAAgwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAAABAAAAAABBAAAAAABIgAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAABIgAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAIgAAAAAAgwAAAAAABAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAMBwAAAAAIBwAAAAAIgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAIgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMgwAAAAAAMwAAAAAAMwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAAMwAAAAAAMwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGgwAAAAAABAAAAAAAMwAAAAAE
version: 6
-8,1:
ind: -8,1
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAADgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBwAAAAAABwAAAAAIBwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAADgAAAAACDgAAAAADDgAAAAABDgAAAAABgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAADgwAAAAAADgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAADgwAAAAAADgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABDgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAAAgwAAAAAAgwAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAACDgAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAADDgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADDgAAAAAADgAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAADgAAAAABDgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA
version: 6
-8,2:
ind: -8,2
- tiles: gwAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMBwAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAACBwAAAAAAgwAAAAAADgAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAADgAAAAADDgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADDgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAMBwAAAAAAgwAAAAAADgAAAAABDgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-5:
ind: -6,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHwAAAAABHwAAAAABHwAAAAACgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAMwAAAAAAMwAAAAAIMwAAAAAAMwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAMwAAAAAAMwAAAAAGMwAAAAAAMwAAAAAJgwAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMwAAAAAAMwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAEBwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMwAAAAABMwAAAAAABAAAAAAABAAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMwAAAAAAMwAAAAAABAAAAAACBAAAAAACBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAMBAAAAAAABAAAAAACBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJgwAAAAAAMwAAAAAGMwAAAAAAMwAAAAAABAAAAAACBAAAAAAABAAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAAgwAAAAAABwAAAAAGBwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-9,0:
ind: -9,0
- tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAEgwAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAABBwAAAAAAgwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAHgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAIgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAMgwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAABwAAAAAEgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAGgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAA
version: 6
-9,-1:
ind: -9,-1
- tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAABgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAACJgAAAAACgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAA
+ tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAACJgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAH
version: 6
-9,-2:
ind: -9,-2
- tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAABAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAGAgAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAADgwAAAAAA
+ tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMgwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAALgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAIAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAADAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADgwAAAAAA
version: 6
-9,1:
ind: -9,1
- tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAAD
version: 6
-10,-3:
ind: -10,-3
- tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAABAAAAAABgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA
version: 6
-10,-1:
ind: -10,-1
@@ -309,35 +320,35 @@ entities:
version: 6
-8,-4:
ind: -8,-4
- tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABgwAAAAAACQAAAAAAAwAAAAABAwAAAAADDQAAAAAADQAAAAADgwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAACQAAAAAAAwAAAAAAAwAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAACCQAAAAAABAAAAAADCQAAAAAAAwAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAABBAAAAAABAwAAAAACBAAAAAADBAAAAAAABAAAAAAAAwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAAAwAAAAABCQAAAAAABAAAAAADCQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAABgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAACQAAAAAAAwAAAAAAAwAAAAABDQAAAAABDQAAAAACgwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAACQAAAAAAAwAAAAACAwAAAAACDQAAAAAADQAAAAAAgwAAAAAAAwAAAAAACQAAAAAABAAAAAAACQAAAAAAAwAAAAABgwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAAADQAAAAACBAAAAAACAwAAAAADBAAAAAACBAAAAAAABAAAAAABAwAAAAADgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADDQAAAAADDQAAAAACDQAAAAABDQAAAAABDQAAAAACgwAAAAAAAwAAAAABCQAAAAAABAAAAAACCQAAAAAAAwAAAAADgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAAgwAAAAAA
version: 6
-8,-3:
ind: -8,-3
- tiles: IwAAAAABIwAAAAACIwAAAAADBAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAAAHwAAAAABHwAAAAAAIwAAAAAABAAAAAADgwAAAAAABAAAAAADIwAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADIwAAAAADBAAAAAAAHwAAAAADHwAAAAACIwAAAAABBAAAAAACBAAAAAACBAAAAAADIwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAACIwAAAAADBAAAAAACHwAAAAAAHwAAAAADIwAAAAAABAAAAAABgwAAAAAABAAAAAACIwAAAAADIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAADBAAAAAACIwAAAAADIwAAAAABIwAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAABDQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACDQAAAAACDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAADQAAAAAADQAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAAgwAAAAAABAAAAAADBAAAAAACKwAAAAAABAAAAAACBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGwAAAAAAGwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGwAAAAAAGwAAAAAAgwAAAAAAGwAAAAAAGwAAAAAA
+ tiles: IwAAAAADIwAAAAAAIwAAAAADBAAAAAADgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACHwAAAAAAHwAAAAACIwAAAAAABAAAAAABgwAAAAAABAAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAIwAAAAADIwAAAAACIwAAAAAABAAAAAADHwAAAAAAHwAAAAACIwAAAAABBAAAAAACBAAAAAACBAAAAAABIwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAIwAAAAACBAAAAAAAHwAAAAAAHwAAAAABIwAAAAAABAAAAAAAgwAAAAAABAAAAAABIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAACIwAAAAABBAAAAAAAIwAAAAACIwAAAAABIwAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAABgwAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAABDQAAAAADgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACDQAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAAADQAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAAAwAAAAADAwAAAAAAAwAAAAABDQAAAAADDQAAAAADgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAABDQAAAAADgwAAAAAABAAAAAADBAAAAAADKwAAAAAABAAAAAACBAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGwAAAAABGwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGwAAAAADGwAAAAADgwAAAAAAGwAAAAAAGwAAAAAA
version: 6
-9,-3:
ind: -9,-3
- tiles: gwAAAAAABAAAAAADBAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAAgwAAAAAABAAAAAADIwAAAAAAIwAAAAADgwAAAAAABAAAAAADBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAADBQAAAAABgwAAAAAABAAAAAADIwAAAAACHwAAAAABBAAAAAAABAAAAAAABAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAAIwAAAAABHwAAAAABgwAAAAAABAAAAAABBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAABIwAAAAABHwAAAAABgwAAAAAABAAAAAAABAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAIwAAAAADIwAAAAADgwAAAAAABAAAAAAABAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAAADQAAAAADgwAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAAAIwAAAAACIwAAAAAAIwAAAAADDQAAAAACDQAAAAADDQAAAAAADQAAAAABDQAAAAABgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAABAAAAAACBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAABBQAAAAADgwAAAAAABAAAAAADIwAAAAADIwAAAAACgwAAAAAABAAAAAAABAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAADgwAAAAAABAAAAAADIwAAAAACHwAAAAACBAAAAAACBAAAAAABBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACIwAAAAABHwAAAAABgwAAAAAABAAAAAAABAAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAIwAAAAAAHwAAAAABgwAAAAAABAAAAAACBAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAABIwAAAAABIwAAAAAAgwAAAAAABAAAAAACBAAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACgwAAAAAAgwAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAABDQAAAAABgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAAADQAAAAABgwAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAABDQAAAAACIwAAAAAAIwAAAAADIwAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAABgwAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAFgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: BAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAAAwAAAAACGgAAAAAAGgAAAAAAAwAAAAADAwAAAAAABwAAAAAIBwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAACAwAAAAACBwAAAAALBwAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACGgAAAAAAGgAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAHBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACAwAAAAAAGgAAAAAAGgAAAAAAAwAAAAAAAwAAAAABBwAAAAALBwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAABAwAAAAAAGgAAAAAAGgAAAAAAAwAAAAABAwAAAAACBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAABAwAAAAADBwAAAAADBwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAADAwAAAAADBwAAAAAABwAAAAAKBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACGgAAAAAAGgAAAAAAAwAAAAABAwAAAAAABwAAAAAEBwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAJBwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: BwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAHBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-9,2:
ind: -9,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAABDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAADDgAAAAADDgAAAAAADgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-5:
ind: -2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAALBwAAAAAKAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
0,-1:
ind: 0,-1
@@ -345,7 +356,7 @@ entities:
version: 6
-4,-5:
ind: -4,-5
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAFBwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACgwAAAAAAJwAAAAAAJwAAAAABJwAAAAADJwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAJwAAAAABJwAAAAABJwAAAAABJwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAJwAAAAACJwAAAAAAJwAAAAADJwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAJwAAAAACJwAAAAABJwAAAAADJwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAJwAAAAABJwAAAAADJwAAAAAAJwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAJwAAAAACJwAAAAACJwAAAAAAJwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADJwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-10,0:
ind: -10,0
@@ -357,15 +368,15 @@ entities:
version: 6
-3,-5:
ind: -3,-5
- tiles: BwAAAAAABwAAAAAFBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAGIQAAAAABIQAAAAABIQAAAAAAgwAAAAAABwAAAAAFBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAMAAAAAADBwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAHBwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAMBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAIQAAAAACIQAAAAADIQAAAAADgwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKgwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAMBwAAAAAMGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACgwAAAAAA
version: 6
-4,-6:
ind: -4,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-6:
ind: -5,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAJ
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-1,-5:
ind: -1,-5
@@ -373,7 +384,7 @@ entities:
version: 6
-6,-6:
ind: -6,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-2,-6:
ind: -2,-6
@@ -393,11 +404,11 @@ entities:
version: 6
-8,-5:
ind: -8,-5
- tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACDAAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAADAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACDAAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAADAAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAABDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACDAAAAAAAAwAAAAADAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAABDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAABDAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABDAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACDAAAAAAAAwAAAAACDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABDAAAAAAAAwAAAAACAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABDAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-8,-6:
ind: -8,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA
version: 6
-9,-5:
ind: -9,-5
@@ -411,6 +422,10 @@ entities:
ind: -1,-6
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
+ -7,-6:
+ ind: -7,-6
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ version: 6
- type: Broadphase
- type: Physics
bodyStatus: InAir
@@ -497,12 +512,18 @@ entities:
id: Basalt5
decals:
9465: -59.23159,-38.407875
+ 10582: -87.25911,-79.97429
- node:
cleanable: True
color: '#FFFFFFFF'
id: Basalt5
decals:
9807: -12,-31
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt6
+ decals:
+ 10583: -86.91536,-80.521164
- node:
color: '#FFFFFFFF'
id: Basalt7
@@ -513,6 +534,7 @@ entities:
id: Basalt8
decals:
9469: -70.87551,-42.000603
+ 10581: -88.38411,-79.677414
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -722,7 +744,6 @@ entities:
8619: -104,16
8693: -52,-21
8695: -52,-24
- 9885: -94,-64
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -827,6 +848,8 @@ entities:
9722: -72,-1
9731: -73,-2
10157: -79,-19
+ 10586: -78,-27
+ 10587: -77,-28
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
@@ -837,6 +860,7 @@ entities:
9718: -76,-1
9730: -75,-2
10156: -85,-19
+ 10585: -79,-27
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
@@ -848,6 +872,7 @@ entities:
9728: -72,-5
9729: -73,-4
10158: -79,-24
+ 10584: -77,-30
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
@@ -858,6 +883,7 @@ entities:
9712: -76,-5
9713: -75,-4
10159: -85,-24
+ 10588: -79,-30
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNe
@@ -865,12 +891,7 @@ entities:
6644: -121,-73
9753: -72,-3
10163: -81,-21
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerNe
- decals:
- 9979: -64,-34
+ 10181: -64,-34
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNw
@@ -878,12 +899,7 @@ entities:
6643: -121,-73
9553: -50,-61
10162: -83,-21
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerNw
- decals:
- 9978: -60,-34
+ 10180: -60,-34
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSe
@@ -891,24 +907,14 @@ entities:
6641: -121,-73
9754: -72,-3
10160: -81,-23
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerSe
- decals:
- 9977: -64,-30
+ 10178: -64,-30
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
decals:
6642: -121,-73
10161: -83,-23
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkInnerSw
- decals:
- 9976: -60,-30
+ 10179: -60,-30
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineE
@@ -944,21 +950,10 @@ entities:
10153: -79,-22
10154: -79,-21
10155: -79,-20
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkLineE
- decals:
- 9937: -94,-61
- 9938: -94,-60
- 9941: -93,-62
- 9942: -93,-63
- 9943: -93,-64
- 9944: -93,-65
- 9945: -93,-66
- 9964: -64,-31
- 9965: -64,-32
- 9966: -64,-33
+ 10172: -64,-33
+ 10173: -64,-32
+ 10174: -64,-31
+ 10592: -77,-29
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -987,14 +982,9 @@ entities:
10146: -82,-19
10147: -81,-19
10148: -80,-19
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkLineN
- decals:
- 9967: -63,-34
- 9968: -62,-34
- 9969: -61,-34
+ 10164: -63,-34
+ 10165: -62,-34
+ 10166: -61,-34
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
@@ -1021,14 +1011,10 @@ entities:
10138: -82,-24
10139: -81,-24
10140: -80,-24
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkLineS
- decals:
- 9970: -63,-30
- 9971: -62,-30
- 9972: -61,-30
+ 10175: -63,-30
+ 10176: -62,-30
+ 10177: -61,-30
+ 10591: -78,-30
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
@@ -1063,21 +1049,11 @@ entities:
10130: -85,-22
10131: -85,-21
10132: -85,-20
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: BrickTileDarkLineW
- decals:
- 9939: -92,-61
- 9940: -92,-60
- 9946: -93,-66
- 9947: -93,-65
- 9948: -93,-64
- 9949: -93,-63
- 9950: -93,-62
- 9973: -60,-33
- 9974: -60,-32
- 9975: -60,-31
+ 10169: -60,-33
+ 10170: -60,-32
+ 10171: -60,-31
+ 10589: -79,-29
+ 10590: -79,-28
- node:
color: '#D381C9FF'
id: BrickTileSteelCornerNe
@@ -1094,6 +1070,11 @@ entities:
id: BrickTileSteelCornerNw
decals:
7573: -151,-48
+ - node:
+ color: '#D69949FF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 10747: -95,-60
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
@@ -1124,12 +1105,28 @@ entities:
id: BrickTileSteelCornerSw
decals:
7583: -151,-44
+ - node:
+ color: '#D69949FF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 10745: -95,-62
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
6255: -130,-48
6696: -122,-47
+ 10211: -90,-75
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelEndE
+ decals:
+ 10204: -88,-75
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelEndN
+ decals:
+ 10209: -90,-73
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndW
@@ -1146,6 +1143,11 @@ entities:
decals:
8584: -58,-26
8708: -50,-24
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNe
+ decals:
+ 10206: -90,-75
- node:
color: '#37789BFF'
id: BrickTileSteelInnerNw
@@ -1178,6 +1180,11 @@ entities:
decals:
9626: -46,-39
9633: -46,-35
+ - node:
+ color: '#96DAFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 10537: -97,-61
- node:
color: '#9FED58FF'
id: BrickTileSteelLineE
@@ -1206,6 +1213,7 @@ entities:
6249: -126,-46
6250: -126,-47
6694: -114,-46
+ 10208: -90,-74
- node:
color: '#37789BFF'
id: BrickTileSteelLineN
@@ -1213,6 +1221,11 @@ entities:
9630: -43,-36
9631: -44,-36
9632: -45,-36
+ - node:
+ color: '#96DAFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 10540: -98,-60
- node:
color: '#9FED58FF'
id: BrickTileSteelLineN
@@ -1254,6 +1267,7 @@ entities:
6690: -117,-45
6691: -116,-45
6692: -115,-45
+ 10205: -89,-75
- node:
color: '#37789BFF'
id: BrickTileSteelLineS
@@ -1261,6 +1275,11 @@ entities:
9627: -45,-38
9628: -44,-38
9629: -43,-38
+ - node:
+ color: '#96DAFFFF'
+ id: BrickTileSteelLineS
+ decals:
+ 10538: -98,-62
- node:
color: '#9FED58FF'
id: BrickTileSteelLineS
@@ -1298,6 +1317,7 @@ entities:
6702: -117,-47
6703: -116,-47
6704: -115,-47
+ 10210: -89,-75
- node:
color: '#37789BFF'
id: BrickTileSteelLineW
@@ -1307,6 +1327,11 @@ entities:
9625: -46,-39
9634: -46,-36
9635: -46,-38
+ - node:
+ color: '#96DAFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 10539: -99,-61
- node:
color: '#9FED58FF'
id: BrickTileSteelLineW
@@ -1325,6 +1350,11 @@ entities:
decals:
7580: -151,-49
7584: -151,-43
+ - node:
+ color: '#D69949FF'
+ id: BrickTileSteelLineW
+ decals:
+ 10746: -95,-61
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
@@ -1338,6 +1368,21 @@ entities:
6257: -130,-46
6258: -130,-45
6697: -122,-46
+ 10207: -90,-74
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteBox
+ decals:
+ 10611: -100,-72
+ 10612: -102,-74
+ 10613: -98,-68
+ 10720: -93,-63
+ 10721: -91,-63
+ - node:
+ color: '#765428FF'
+ id: BrickTileWhiteBox
+ decals:
+ 10245: -96,-61
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNe
@@ -1369,6 +1414,17 @@ entities:
id: BrickTileWhiteCornerNe
decals:
7988: -22,-49
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 10608: -97,-69
+ 10651: -94,-64
+ 10664: -90,-64
+ 10684: -89,-69
+ 10685: -90,-68
+ 10723: -91,-61
+ 10724: -92,-60
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNe
@@ -1398,6 +1454,9 @@ entities:
8457: -94,12
8561: -83,20
8671: -104,11
+ 10216: -92,-58
+ 10217: -91,-59
+ 10535: -97,-60
- node:
color: '#774194FF'
id: BrickTileWhiteCornerNe
@@ -1501,6 +1560,14 @@ entities:
decals:
7954: -24,-49
7966: -27,-53
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 10638: -100,-71
+ 10640: -99,-69
+ 10652: -95,-64
+ 10703: -95,-73
- node:
color: '#52B4E9FF'
id: BrickTileWhiteCornerNw
@@ -1523,6 +1590,8 @@ entities:
8477: -97,12
8515: -97,23
8667: -105,11
+ 10214: -94,-58
+ 10536: -99,-60
- node:
color: '#774194FF'
id: BrickTileWhiteCornerNw
@@ -1550,11 +1619,6 @@ entities:
9097: -93,-38
9394: -27,8
9818: -12,-11
- - node:
- color: '#9FED58FF'
- id: BrickTileWhiteCornerNw
- decals:
- 9892: -96,-62
- node:
color: '#BE6BC3FF'
id: BrickTileWhiteCornerNw
@@ -1612,6 +1676,18 @@ entities:
id: BrickTileWhiteCornerSe
decals:
7980: -22,-55
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 10615: -100,-74
+ 10628: -99,-75
+ 10654: -94,-65
+ 10655: -98,-65
+ 10663: -90,-66
+ 10683: -89,-71
+ 10698: -94,-76
+ 10846: -97,-64
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSe
@@ -1640,6 +1716,7 @@ entities:
8453: -94,7
8565: -83,19
8597: -99,13
+ 10534: -97,-62
- node:
color: '#774194FF'
id: BrickTileWhiteCornerSe
@@ -1728,6 +1805,15 @@ entities:
id: BrickTileWhiteCornerSw
decals:
7973: -27,-55
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 10653: -95,-65
+ 10660: -93,-66
+ 10682: -91,-71
+ 10699: -95,-76
+ 10709: -95,-69
- node:
color: '#52B4E9FF'
id: BrickTileWhiteCornerSw
@@ -1756,6 +1842,7 @@ entities:
8645: -104,9
8646: -103,7
8647: -102,6
+ 10533: -99,-62
- node:
color: '#774194FF'
id: BrickTileWhiteCornerSw
@@ -1788,11 +1875,6 @@ entities:
9107: -93,-40
9124: -89,-24
9396: -27,4
- - node:
- color: '#9FED58FF'
- id: BrickTileWhiteCornerSw
- decals:
- 9895: -96,-66
- node:
color: '#BE6BC3FF'
id: BrickTileWhiteCornerSw
@@ -1840,11 +1922,28 @@ entities:
id: BrickTileWhiteEndE
decals:
10050: -55,3
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteEndN
+ decals:
+ 10630: -99,-73
+ 10725: -93,-59
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteEndS
+ decals:
+ 10647: -97,-72
- node:
color: '#765428FF'
id: BrickTileWhiteEndS
decals:
8621: -104,13
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteEndW
+ decals:
+ 10625: -101,-75
+ 10688: -92,-68
- node:
color: '#765428FF'
id: BrickTileWhiteEndW
@@ -1867,6 +1966,21 @@ entities:
8185: -118,-5
8242: -122,15
8252: -116,16
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 10609: -98,-69
+ 10646: -98,-72
+ 10650: -92,-59
+ 10659: -94,-66
+ 10674: -93,-64
+ 10675: -91,-64
+ 10694: -92,-75
+ 10719: -93,-68
+ 10726: -92,-61
+ 10727: -93,-60
+ 10740: -95,-62
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerNe
@@ -2006,6 +2120,19 @@ entities:
decals:
8207: -112,-5
8244: -118,15
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 10610: -98,-69
+ 10619: -100,-74
+ 10629: -99,-75
+ 10649: -94,-59
+ 10673: -91,-64
+ 10715: -98,-66
+ 10728: -93,-60
+ 10739: -92,-62
+ 10803: -93,-73
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerNw
@@ -2098,7 +2225,6 @@ entities:
id: BrickTileWhiteInnerNw
decals:
9595: -86,-5
- 9898: -94,-62
- node:
color: '#A4610696'
id: BrickTileWhiteInnerNw
@@ -2158,6 +2284,18 @@ entities:
8184: -118,-5
8211: -119,12
8254: -116,16
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 10641: -100,-70
+ 10642: -100,-71
+ 10690: -92,-71
+ 10697: -94,-75
+ 10713: -98,-67
+ 10734: -93,-62
+ 10738: -95,-60
+ 10847: -98,-64
- node:
color: '#52B4E9FF'
id: BrickTileWhiteInnerSe
@@ -2314,6 +2452,17 @@ entities:
decals:
8217: -121,14
8233: -124,17
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 10679: -91,-68
+ 10714: -98,-66
+ 10717: -95,-67
+ 10732: -93,-62
+ 10733: -91,-62
+ 10737: -92,-60
+ 10802: -93,-69
- node:
color: '#52B4E9FF'
id: BrickTileWhiteInnerSw
@@ -2415,7 +2564,6 @@ entities:
id: BrickTileWhiteInnerSw
decals:
9601: -86,-3
- 9897: -94,-66
- node:
color: '#A4610696'
id: BrickTileWhiteInnerSw
@@ -2533,6 +2681,22 @@ entities:
7983: -22,-53
7984: -22,-52
7985: -22,-51
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 10606: -97,-71
+ 10607: -97,-70
+ 10616: -100,-73
+ 10631: -99,-74
+ 10665: -90,-65
+ 10686: -89,-70
+ 10691: -92,-72
+ 10692: -92,-73
+ 10693: -92,-74
+ 10718: -93,-67
+ 10722: -91,-62
+ 10741: -95,-61
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
@@ -2837,6 +3001,20 @@ entities:
7961: -25,-53
7962: -26,-53
7989: -23,-49
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 10618: -101,-74
+ 10627: -100,-75
+ 10648: -93,-58
+ 10658: -96,-64
+ 10672: -92,-64
+ 10689: -91,-68
+ 10704: -94,-73
+ 10729: -94,-60
+ 10735: -94,-62
+ 10736: -93,-62
- node:
color: '#52B4E996'
id: BrickTileWhiteLineN
@@ -2900,6 +3078,7 @@ entities:
8793: -88,25
9603: -85,-5
9614: -84,-5
+ 10281: -95,-59
- node:
color: '#774194FF'
id: BrickTileWhiteLineN
@@ -3115,11 +3294,6 @@ entities:
8109: -128,-6
8110: -127,-6
8111: -126,-6
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineN
- decals:
- 9901: -95,-62
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineS
@@ -3159,6 +3333,26 @@ entities:
7976: -25,-55
7977: -24,-55
7978: -23,-55
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 10614: -101,-74
+ 10626: -100,-75
+ 10643: -99,-71
+ 10644: -98,-71
+ 10661: -92,-66
+ 10662: -91,-66
+ 10687: -90,-71
+ 10695: -92,-75
+ 10696: -93,-75
+ 10708: -94,-69
+ 10711: -96,-67
+ 10712: -97,-67
+ 10730: -92,-62
+ 10731: -94,-62
+ 10743: -93,-60
+ 10744: -94,-60
- node:
color: '#52B4E996'
id: BrickTileWhiteLineS
@@ -3435,11 +3629,6 @@ entities:
8139: -12,-21
8147: -10,-17
8151: -9,-17
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineS
- decals:
- 9902: -95,-66
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineW
@@ -3504,6 +3693,25 @@ entities:
7957: -24,-51
7958: -24,-52
7970: -27,-54
+ - node:
+ color: '#4B709CFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 10617: -100,-73
+ 10632: -99,-74
+ 10639: -99,-70
+ 10676: -93,-64
+ 10677: -93,-65
+ 10680: -91,-69
+ 10681: -91,-70
+ 10700: -95,-75
+ 10702: -95,-74
+ 10705: -93,-72
+ 10706: -93,-71
+ 10707: -93,-70
+ 10710: -95,-68
+ 10716: -98,-67
+ 10742: -92,-61
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
@@ -3647,7 +3855,6 @@ entities:
id: BrickTileWhiteLineW
decals:
9598: -86,-4
- 9896: -96,-64
- node:
color: '#A4610696'
id: BrickTileWhiteLineW
@@ -3753,12 +3960,6 @@ entities:
8105: -130,-7
8145: -135,1
8146: -135,-1
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineW
- decals:
- 9899: -96,-65
- 9900: -96,-63
- node:
color: '#FFFFFFFF'
id: BushAOne
@@ -3789,7 +3990,6 @@ entities:
2141: -109,11
2145: -113,11
2153: -132,4
- 2888: -100,-58
2896: -85,-56
2900: -81,-58
2902: -82,-56
@@ -3799,9 +3999,10 @@ entities:
5570: -76,-69
5916: -132,15
6111: -66,-38
- 6718: -75,-27
7059: -103,-55
9980: -63.767715,-28.049706
+ 10576: -88,-80
+ 10808: -96.5879,-65.97278
- node:
color: '#D4D4D4FF'
id: BushAThree
@@ -3857,6 +4058,7 @@ entities:
9461: -59.845207,-40.71465
9470: -60.041878,-47.945374
9472: -70.01452,-48.038822
+ 10578: -87,-81
- node:
color: '#FFFFFFFF'
id: BushCThree
@@ -3870,6 +4072,8 @@ entities:
5578: -73,-76
6977: -17,-58
6978: -14,-57
+ 10579: -86,-81
+ 10835: -93.73512,-74.77869
- node:
color: '#FFFFFFFF'
id: BushCTwo
@@ -3897,6 +4101,7 @@ entities:
7064: -95,-58
9416: -86.769905,21.70997
9460: -58.498158,-39.48144
+ 10836: -92.73512,-74.71619
- node:
color: '#FFFFFFFF'
id: Busha1
@@ -4004,6 +4209,7 @@ entities:
6827: -130,-29
6974: -18,-62
7224: -136,7
+ 10575: -89,-80
- node:
color: '#FFFFFFFF'
id: Bushb1
@@ -4050,7 +4256,6 @@ entities:
2144: -114,7
2154: -132,7
2882: -31,-2
- 2893: -92,-58
2898: -88,-58
2907: -85,-60
2932: -88,16
@@ -4155,12 +4360,14 @@ entities:
6723: -70,-41
9475: -90.03589,-13.017019
9476: -105.97272,-13.220144
+ 10580: -87,-80
- node:
color: '#FFFFFFFF'
id: Bushc3
decals:
1388: -103,-33
2913: -136,4
+ 10839: -92.36012,-71.85681
- node:
color: '#FFFFFFFF'
id: Bushd4
@@ -4210,6 +4417,11 @@ entities:
id: Bushj3
decals:
9417: -85.89448,20.506845
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk1
+ decals:
+ 10423: -93.480515,-60.69479
- node:
color: '#FFFFFFFF'
id: Bushk3
@@ -4220,6 +4432,11 @@ entities:
id: Bushl4
decals:
2848: -111,28
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushm4
+ decals:
+ 10837: -92.92262,-71.76306
- node:
color: '#439909FF'
id: CheckerNESW
@@ -4358,6 +4575,9 @@ entities:
8640: -101,16
8641: -100,16
8642: -99,16
+ 10518: -100,-61
+ 10519: -100,-60
+ 10598: -101,-73
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -4394,6 +4614,9 @@ entities:
6708: -71,-37
6709: -70,-36
6710: -68,-36
+ 10396: -89,-69
+ 10398: -91,-68
+ 10399: -90,-68
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -4459,6 +4682,13 @@ entities:
9203: -99,-45
9204: -97,-45
9205: -97,-47
+ 10447: -91,-71
+ 10448: -89,-71
+ 10475: -91,-69
+ 10507: -96,-61
+ 10552: -100,-61
+ 10553: -100,-60
+ 10767: -101,-73
- node:
color: '#FFFFFFFF'
id: DirtHeavy
@@ -4512,16 +4742,35 @@ entities:
8414: -110,-21
8415: -111,-21
8416: -119,-5
- 9927: -93,-62
- 9928: -92,-61
- 9929: -92,-61
- 9930: -93,-61
- 9931: -93,-61
- 9932: -94,-61
- 9933: -94,-60
- 9934: -93,-60
- 9935: -92,-60
- 9936: -92,-60
+ 10182: -64,-34
+ 10183: -64,-32
+ 10184: -60,-32
+ 10185: -60,-34
+ 10186: -61,-34
+ 10200: -61,-33
+ 10201: -63,-33
+ 10202: -61,-32
+ 10203: -63,-31
+ 10449: -89,-71
+ 10450: -90,-69
+ 10468: -90,-73
+ 10489: -94,-58
+ 10545: -99,-61
+ 10748: -93,-66
+ 10749: -92,-65
+ 10750: -90,-64
+ 10751: -95,-65
+ 10752: -91,-62
+ 10764: -98,-69
+ 10765: -99,-71
+ 10766: -100,-71
+ 10768: -98,-71
+ 10769: -97,-70
+ 10794: -89,-70
+ 10795: -89,-70
+ 10796: -89,-70
+ 10797: -101,-74
+ 10798: -100,-73
- node:
color: '#FFFFFFFF'
id: DirtHeavyMonotile
@@ -4574,6 +4823,28 @@ entities:
9824: -33,16
9825: -33,16
9826: -33,16
+ 10187: -62,-34
+ 10188: -63,-34
+ 10189: -64,-30
+ 10190: -61,-30
+ 10191: -62,-30
+ 10469: -90,-75
+ 10470: -88,-75
+ 10546: -97,-62
+ 10547: -97,-62
+ 10554: -100,-61
+ 10555: -100,-61
+ 10556: -100,-60
+ 10557: -100,-60
+ 10564: -92,-58
+ 10565: -92,-58
+ 10566: -94,-58
+ 10753: -95,-62
+ 10754: -95,-60
+ 10755: -92,-60
+ 10756: -93,-64
+ 10757: -90,-64
+ 10758: -90,-66
- node:
color: '#FFFFFFFF'
id: DirtLight
@@ -4612,11 +4883,7 @@ entities:
color: '#FFFFFFFF'
id: DirtLight
decals:
- 1580: -64,-33
1581: -65,-33
- 1582: -64,-32
- 1583: -62,-34
- 1584: -63,-34
1585: -66,-32
1586: -66,-33
6831: -110,-51
@@ -4730,6 +4997,24 @@ entities:
8437: -116,16
8439: -113,16
8440: -114,16
+ 10192: -63,-30
+ 10193: -64,-33
+ 10194: -60,-33
+ 10195: -60,-31
+ 10471: -89,-75
+ 10548: -98,-61
+ 10549: -98,-61
+ 10759: -93,-63
+ 10760: -91,-63
+ 10761: -92,-64
+ 10762: -91,-64
+ 10763: -91,-64
+ 10770: -99,-70
+ 10771: -99,-69
+ 10772: -100,-69
+ 10799: -100,-74
+ 10800: -99,-75
+ 10801: -100,-75
- node:
color: '#FFFFFFFF'
id: DirtMedium
@@ -4888,15 +5173,6 @@ entities:
8825: -94,30
8826: -92,28
8827: -94,28
- 9903: -96,-66
- 9904: -95,-66
- 9905: -94,-66
- 9906: -96,-65
- 9907: -96,-65
- 9908: -96,-64
- 9909: -95,-64
- 9910: -94,-64
- 9911: -94,-63
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -4927,16 +5203,12 @@ entities:
1536: -64,-26
1537: -58,-27
1538: -58,-31
- 1539: -60,-31
- 1540: -60,-32
1541: -59,-28
1542: -58,-31
- 1543: -64,-31
1544: -65,-32
1545: -65,-34
1546: -65,-30
1547: -59,-32
- 1548: -64,-34
1549: -65,-35
1550: -66,-36
1551: -59,-34
@@ -5538,12 +5810,7 @@ entities:
3873: -59,-29
3874: -59,-29
3875: -60,-29
- 3876: -60,-30
3877: -59,-30
- 3878: -61,-30
- 3879: -62,-30
- 3880: -63,-30
- 3881: -64,-30
3882: -66,-30
3883: -66,-31
3884: -66,-32
@@ -6789,8 +7056,6 @@ entities:
5899: -120,12
5900: -119,12
5901: -122,16
- 5940: -93,-60
- 5941: -93,-59
6121: -70,-26
6122: -69,-26
6123: -68,-26
@@ -7018,38 +7283,111 @@ entities:
9288: -38,-22
9289: -38,-21
9290: -38,-20
- 9912: -96,-63
- 9913: -96,-62
- 9914: -95,-62
- 9915: -94,-62
- 9916: -94,-62
- 9917: -95,-62
- 9918: -93,-64
- 9919: -93,-66
- 9920: -92,-66
- 9921: -91,-66
- 9922: -91,-65
- 9923: -92,-65
- 9924: -93,-64
- 9925: -93,-63
- 9926: -93,-62
+ 10196: -59,-33
+ 10197: -59,-31
+ 10198: -62,-34
+ 10199: -63,-34
+ 10456: -91,-65
+ 10465: -90,-70
+ 10472: -90,-74
+ 10473: -89,-75
+ 10487: -95,-59
+ 10550: -97,-61
+ 10551: -97,-61
+ 10773: -100,-69
+ 10774: -100,-69
+ 10775: -100,-70
+ 10776: -100,-70
+ 10777: -98,-70
+ 10778: -99,-70
+ 10779: -97,-72
+ 10780: -98,-72
+ 10781: -98,-65
+ 10783: -95,-64
+ 10784: -94,-65
+ 10785: -94,-60
+ 10786: -92,-60
+ 10787: -93,-62
+ 10788: -94,-62
+ 10789: -93,-59
+ 10790: -93,-59
+ 10791: -92,-65
- node:
color: '#181C79FF'
id: FullTileOverlayGreyscale
decals:
9442: -80,-64
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa5
+ decals:
+ 10811: -95.657,-66.46193
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassa5
decals:
9780: -9.387437,-30.095554
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb1
+ decals:
+ 10809: -97.01637,-66.58693
+ 10813: -96.12575,-65.27443
+ 10823: -94.54762,-68.290054
+ 10826: -94.82887,-66.071304
+ 10829: -94.23512,-68.36818
+ 10841: -92.2195,-69.96066
+ 10842: -92.61012,-69.25754
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb2
+ decals:
+ 10821: -93.04762,-67.80568
+ 10843: -92.81325,-68.61691
+ 10844: -92.782,-69.89816
+ 10845: -94.5945,-74.74191
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb4
+ decals:
+ 10824: -94.68825,-67.383804
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb5
+ decals:
+ 10810: -96.98512,-65.77443
+ 10820: -93.73512,-66.883804
+ 10822: -93.5945,-68.540054
+ 10825: -94.82887,-66.821304
+ 10834: -94.2195,-73.52869
+ 10840: -92.407,-72.57556
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc1
+ decals:
+ 10827: -94.82887,-66.55568
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc2
+ decals:
+ 10812: -96.0945,-66.571304
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc3
+ decals:
+ 10828: -93.37575,-68.36818
- node:
cleanable: True
color: '#FFFFFFFF'
id: Grassd1
decals:
9783: -10.856187,-29.876804
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd2
+ decals:
+ 10838: -92.48512,-71.49744
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -7058,6 +7396,14 @@ entities:
9782: -13.012437,-32.001804
9784: -9.981187,-29.04868
9785: -10.340562,-29.814304
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd3
+ decals:
+ 10830: -94.532,-67.321304
+ 10831: -95.82887,-65.665054
+ 10832: -96.93825,-65.24318
+ 10833: -92.48512,-73.77869
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -7237,6 +7583,7 @@ entities:
1976: -109,16
6743: -103,14
8338: -108,16
+ 10271: -100,-58
- node:
color: '#181379FF'
id: MarkupSquare
@@ -7410,6 +7757,34 @@ entities:
6224: -120,29
6539: -44.46646,-73.98094
7057: -102.71358,-66.1344
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock01
+ decals:
+ 10406: -94,-61
+ 10819: -93.93825,-67.665054
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock02
+ decals:
+ 10407: -93,-61
+ 10814: -93.37575,-73.74318
+ 10817: -92.57887,-70.68068
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock03
+ decals:
+ 10818: -92.532,-72.946304
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock06
+ decals:
+ 10816: -94.18825,-74.290054
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock07
+ decals:
+ 10815: -92.14137,-68.883804
- node:
color: '#D3BA99FF'
id: SpaceStationSign1
@@ -7709,12 +8084,31 @@ entities:
10087: -63,8
10088: -62,8
10089: -61,8
+ - node:
+ color: '#4B709CFF'
+ id: WarnFullGreyscale
+ decals:
+ 10599: -102,-74
+ 10600: -100,-72
+ 10601: -98,-68
+ 10620: -99,-73
+ 10621: -99,-74
+ 10622: -99,-75
+ 10623: -100,-75
+ 10624: -101,-75
+ 10668: -93,-63
+ 10669: -91,-63
- node:
color: '#52B4E9FF'
id: WarnFullGreyscale
decals:
10083: -57,7
10084: -56,7
+ - node:
+ color: '#765428FF'
+ id: WarnFullGreyscale
+ decals:
+ 10240: -96,-61
- node:
color: '#A46106FF'
id: WarnFullGreyscale
@@ -7805,7 +8199,6 @@ entities:
2657: -126,-37
2658: -126,-36
2751: -40,-75
- 5925: -89,-73
5991: -33,-6
6215: -67,-20
6226: -102,27
@@ -7851,15 +8244,6 @@ entities:
decals:
9744: -22,-50
9745: -22,-54
- - node:
- color: '#9FED58FF'
- id: WarnLineGreyscaleE
- decals:
- 9886: -94,-62
- 9887: -94,-63
- 9888: -94,-64
- 9889: -94,-65
- 9890: -94,-66
- node:
color: '#D381C996'
id: WarnLineGreyscaleE
@@ -7876,6 +8260,14 @@ entities:
888: -46,-35
889: -46,-39
9326: -36,6
+ - node:
+ color: '#4B709CFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 10602: -98,-69
+ 10603: -100,-73
+ 10666: -93,-64
+ 10667: -91,-64
- node:
color: '#BE6BC3FF'
id: WarnLineGreyscaleN
@@ -7906,10 +8298,12 @@ entities:
881: -44,-36
882: -45,-36
- node:
- color: '#9FED58FF'
+ color: '#4B709CFF'
id: WarnLineGreyscaleS
decals:
- 9891: -94,-61
+ 10637: -100,-71
+ 10670: -91,-62
+ 10671: -93,-62
- node:
color: '#BE6BC3FF'
id: WarnLineGreyscaleS
@@ -7942,6 +8336,11 @@ entities:
id: WarnLineGreyscaleW
decals:
9750: -24,-50
+ - node:
+ color: '#4B709CFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 10604: -101,-74
- node:
color: '#D381C996'
id: WarnLineGreyscaleW
@@ -8041,7 +8440,6 @@ entities:
2968: -36,-61
2969: -35,-61
2970: -34,-61
- 5922: -90,-74
5972: -27,-23
5973: -26,-23
5974: -25,-23
@@ -8153,7 +8551,6 @@ entities:
2655: -130,-37
2656: -130,-36
2750: -38,-75
- 5923: -91,-73
6214: -67,-20
6529: -98,33
6530: -98,34
@@ -8268,7 +8665,6 @@ entities:
2962: -36,-63
2963: -35,-63
2964: -34,-63
- 5924: -90,-72
5969: -27,-23
5970: -26,-23
5971: -25,-23
@@ -8779,6 +9175,14 @@ entities:
id: burnt1
decals:
9790: -10,-28
+ 10429: -92,-65
+ 10541: -98,-62
+ - node:
+ cleanable: True
+ color: '#4B709CFF'
+ id: burnt2
+ decals:
+ 10804: -92,-62
- node:
color: '#FFFFFFFF'
id: burnt2
@@ -8792,6 +9196,10 @@ entities:
9786: -13,-30
9804: -11,-33
9805: -10,-31
+ 10435: -91,-60
+ 10446: -90,-71
+ 10542: -97,-60
+ 10571: -88,-75
- node:
color: '#FFFFFFFF'
id: burnt3
@@ -8810,6 +9218,7 @@ entities:
9787: -10,-33
9788: -12,-33
9789: -9,-28
+ 10543: -99,-62
- node:
color: '#FFFFFFFF'
id: burnt4
@@ -8845,6 +9254,11 @@ entities:
9801: -11,-34
9802: -13,-33
9803: -9,-31
+ 10433: -91,-59
+ 10434: -90,-60
+ 10445: -91,-70
+ 10544: -99,-60
+ 10793: -90,-68
- node:
color: '#FFFFFFFF'
id: grasssnowa1
@@ -9138,7 +9552,7 @@ entities:
-20,-20:
1: 12288
-21,-20:
- 1: 63271
+ 1: 57895
-20,-19:
1: 39822
-20,-18:
@@ -9383,8 +9797,7 @@ entities:
-15,-5:
1: 61567
-15,0:
- 1: 64139
- 3: 1024
+ 1: 65163
-14,-4:
1: 65535
-14,-3:
@@ -9407,11 +9820,12 @@ entities:
1: 15
0: 61696
-17,2:
+ 1: 12
0: 58128
-15,1:
1: 65534
-15,2:
- 1: 1
+ 1: 7
0: 63744
-14,1:
1: 13107
@@ -9504,31 +9918,33 @@ entities:
2: 65280
1: 14
-24,-16:
- 1: 53247
+ 1: 65167
-24,-17:
- 1: 65280
+ 1: 65534
+ -25,-16:
+ 1: 65036
-24,-15:
- 1: 65420
+ 1: 65518
-25,-15:
- 1: 65280
+ 1: 65311
-24,-14:
1: 57359
-25,-14:
- 1: 63
+ 1: 127
-24,-13:
1: 11186
-24,-12:
1: 43690
-23,-16:
- 1: 4915
+ 1: 62247
-23,-15:
- 1: 65281
+ 1: 65335
-23,-14:
1: 61471
-23,-13:
1: 39856
-23,-17:
- 1: 13056
+ 1: 30471
-23,-12:
1: 65535
-22,-15:
@@ -9770,24 +10186,23 @@ entities:
-20,-9:
1: 61482
-20,-8:
- 1: 3822
+ 1: 60942
-21,-8:
1: 65327
-20,-7:
- 1: 246
+ 1: 110
-21,-7:
1: 4095
-20,-6:
- 1: 21845
+ 1: 13107
-21,-6:
- 1: 65535
+ 1: 64511
-20,-5:
- 1: 69
- 4: 16
+ 1: 51
-21,-5:
1: 255
-19,-7:
- 1: 65532
+ 1: 65437
-19,-6:
1: 39857
-19,-8:
@@ -9855,8 +10270,7 @@ entities:
-22,-6:
1: 48059
-22,-5:
- 1: 825
- 5: 128
+ 1: 953
-22,-9:
1: 48059
-21,-9:
@@ -9946,7 +10360,7 @@ entities:
-8,-9:
1: 61166
-7,-8:
- 1: 61439
+ 1: 61182
-7,-7:
1: 65504
-7,-6:
@@ -9956,7 +10370,7 @@ entities:
-7,-9:
1: 57446
-6,-8:
- 1: 16383
+ 1: 15355
-6,-7:
1: 48056
-6,-6:
@@ -10034,8 +10448,7 @@ entities:
-6,-10:
1: 28799
-5,-12:
- 1: 30512
- 3: 64
+ 1: 30576
-5,-11:
1: 29303
-5,-10:
@@ -10119,7 +10532,7 @@ entities:
1: 52975
-27,-17:
0: 4096
- 1: 34952
+ 1: 34954
-27,-13:
1: 52428
-27,-12:
@@ -10130,12 +10543,14 @@ entities:
1: 14335
-26,-13:
1: 12561
+ -26,-16:
+ 1: 32
-26,-12:
1: 49083
- -25,-16:
- 1: 256
-25,-13:
1: 32
+ -25,-17:
+ 1: 52932
-29,-12:
1: 65535
-29,-11:
@@ -10229,16 +10644,16 @@ entities:
-26,0:
1: 29491
-28,0:
- 6: 21840
- 7: 8736
+ 3: 21840
+ 4: 8736
-28,1:
1: 208
0: 32
- 6: 28672
+ 3: 28672
-29,1:
1: 21973
-28,2:
- 6: 119
+ 3: 119
1: 61440
-29,2:
1: 54613
@@ -10364,7 +10779,7 @@ entities:
1: 61695
-32,0:
1: 4
- 6: 4112
+ 3: 4112
0: 17472
-31,-3:
1: 65535
@@ -10385,21 +10800,21 @@ entities:
-29,0:
1: 21845
-33,0:
- 6: 49344
+ 3: 49344
1: 4369
-32,1:
- 6: 4112
+ 3: 4112
0: 17476
-33,1:
- 6: 49344
+ 3: 49344
1: 4369
-32,2:
- 8: 16
- 9: 4096
+ 5: 16
+ 6: 4096
0: 17476
-33,2:
- 8: 192
- 9: 49152
+ 5: 192
+ 6: 49152
1: 4369
-32,3:
1: 29712
@@ -10520,7 +10935,7 @@ entities:
-28,8:
1: 12288
-29,8:
- 1: 51200
+ 1: 51216
-28,9:
1: 19
-29,9:
@@ -10542,15 +10957,32 @@ entities:
-29,-17:
0: 61836
-27,-19:
- 0: 34959
+ 0: 1231
+ 1: 18432
-27,-18:
- 0: 63624
+ 1: 63266
+ -27,-20:
+ 0: 8928
+ -26,-20:
+ 0: 7967
-26,-19:
- 0: 15
+ 0: 1
+ 1: 36742
-26,-17:
1: 1632
+ -25,-20:
+ 0: 18369
-25,-19:
- 0: 7
+ 1: 15280
+ -25,-18:
+ 1: 65533
+ -25,-21:
+ 0: 31744
+ -24,-20:
+ 0: 31
+ 1: 32768
+ -24,-19:
+ 1: 61438
-32,5:
1: 1904
-33,5:
@@ -10588,13 +11020,29 @@ entities:
-31,9:
1: 285
-30,8:
- 1: 4368
+ 1: 20752
-30,9:
1: 1
+ -24,-18:
+ 1: 61166
+ -24,-21:
+ 0: 12032
+ -23,-20:
+ 0: 7
+ 1: 55304
-23,-19:
- 1: 58368
+ 1: 56825
-23,-18:
- 1: 4
+ 1: 65521
+ -23,-21:
+ 0: 18368
+ -22,-20:
+ 1: 13059
+ -22,-19:
+ 1: 4368
+ -22,-21:
+ 1: 24576
+ 0: 240
-21,-19:
1: 26487
-21,-17:
@@ -10608,7 +11056,7 @@ entities:
1: 221
-37,0:
0: 34952
- 6: 13104
+ 3: 13104
-36,1:
0: 8955
1: 20480
@@ -10812,7 +11260,7 @@ entities:
0: 65535
-38,0:
0: 13107
- 6: 34944
+ 3: 34944
-32,-14:
1: 20206
-32,-12:
@@ -11249,53 +11697,8 @@ entities:
- volume: 2500
temperature: 235
moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.6852
- - 81.57766
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.14996
- moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.14975
- moles:
- - 20.078888
- - 75.53487
+ - 27.225372
+ - 102.419266
- 0
- 0
- 0
@@ -11391,8 +11794,8 @@ entities:
- type: Transform
parent: 5
- type: InstantAction
- container: 5
originalIconColor: '#FFFFFFFF'
+ container: 5
- proto: ActionToggleLight
entities:
- uid: 8
@@ -11400,15 +11803,15 @@ entities:
- type: Transform
parent: 7
- type: InstantAction
- container: 7
originalIconColor: '#FFFFFFFF'
+ container: 7
- uid: 10
components:
- type: Transform
parent: 9
- type: InstantAction
- container: 9
originalIconColor: '#FFFFFFFF'
+ container: 9
- proto: AirAlarm
entities:
- uid: 11
@@ -12990,20 +13393,87 @@ entities:
- 627
- 18012
- 17825
- - uid: 117
+ - uid: 27318
components:
- - type: MetaData
- name: Репортеры APC
- type: Transform
rot: -1.5707963267948966 rad
- pos: -90.5,-60.5
+ pos: -87.5,-70.5
parent: 2
- type: DeviceList
devices:
- - 17824
- - 17614
- - 629
- - 12900
+ - 27424
+ - 27414
+ - 27412
+ - 27340
+ - 27362
+ - 27413
+ - 27416
+ - 27403
+ - 27343
+ - 27386
+ - 27406
+ - 27423
+ - 27422
+ - 27421
+ - 27420
+ - 27404
+ - uid: 27319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-74.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 27405
+ - 27402
+ - 27401
+ - 27407
+ - 27406
+ - 27408
+ - uid: 27320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-61.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 27427
+ - 27426
+ - 296
+ - 27338
+ - 27337
+ - uid: 27321
+ components:
+ - type: Transform
+ pos: -98.5,-67.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 27349
+ - 27387
+ - 27416
+ - 27418
+ - 27417
+ - 27419
+ - 27450
+ - uid: 27435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-61.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 27432
+ - 27431
+ - 27430
+ - 27429
+ - 27428
+ - 27339
+ - 27333
+ - 27433
- proto: AirCanister
entities:
- uid: 118
@@ -13292,18 +13762,53 @@ entities:
pos: -68.5,-28.5
parent: 2
- type: Door
- secondsUntilStateChange: -51119.625
+ secondsUntilStateChange: -70869.58
state: Opening
- type: DeviceLinkSource
lastSignals:
DoorStatus: True
-- proto: AirlockBlueShieldLocked
+- proto: AirlockBlueShieldGlassLocked
entities:
- - uid: 170
+ - uid: 873
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,4.5
+ pos: -90.5,-74.5
+ parent: 2
+ - uid: 2040
+ components:
+ - type: Transform
+ pos: -92.5,-62.5
+ parent: 2
+ - uid: 19546
+ components:
+ - type: Transform
+ pos: -97.5,-67.5
+ parent: 2
+ - uid: 27452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-62.5
+ parent: 2
+- proto: AirlockBlueShieldLocked
+ entities:
+ - uid: 1129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -88.5,-75.5
+ parent: 2
+ - uid: 23655
+ components:
+ - type: Transform
+ pos: -99.5,-71.5
+ parent: 2
+ - uid: 27449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -101.5,-73.5
parent: 2
- proto: AirlockBrigGlassLocked
entities:
@@ -13318,9 +13823,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
304:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
303:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
- uid: 172
components:
- type: Transform
@@ -13332,9 +13839,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
303:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
304:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
- uid: 173
components:
- type: Transform
@@ -13398,6 +13907,12 @@ entities:
rot: 3.141592653589793 rad
pos: -4.5,-17.5
parent: 2
+ - uid: 200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-60.5
+ parent: 2
- proto: AirlockChapelLocked
entities:
- uid: 183
@@ -13479,6 +13994,12 @@ entities:
parent: 2
- proto: AirlockCommandGlassLocked
entities:
+ - uid: 170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,4.5
+ parent: 2
- uid: 195
components:
- type: Transform
@@ -13506,16 +14027,15 @@ entities:
- type: Transform
pos: -85.5,-0.5
parent: 2
- - uid: 200
+ - uid: 339
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -69.5,4.5
parent: 2
- - uid: 201
+ - uid: 422
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -71.5,3.5
parent: 2
- proto: AirlockCommandLocked
@@ -13775,7 +14295,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
276:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 244
components:
- type: Transform
@@ -13815,7 +14336,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
272:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- proto: AirlockExternalGlass
entities:
- uid: 249
@@ -13876,7 +14398,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
295:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- proto: AirlockExternalGlassAtmosphericsLocked
entities:
- uid: 257
@@ -13889,7 +14412,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
259:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 258
components:
- type: Transform
@@ -13901,7 +14425,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
260:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 259
components:
- type: Transform
@@ -13913,7 +14438,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
257:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 260
components:
- type: Transform
@@ -13924,7 +14450,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
258:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- proto: AirlockExternalGlassCommandLocked
entities:
- uid: 261
@@ -13962,7 +14489,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
266:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 266
components:
- type: Transform
@@ -13974,7 +14502,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
265:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- proto: AirlockExternalGlassEngineeringLocked
entities:
- uid: 267
@@ -13986,8 +14515,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19597:
- - DoorStatus: InputA
- - DoorStatus: InputB
+ - - DoorStatus
+ - InputA
+ - - DoorStatus
+ - InputB
- uid: 268
components:
- type: Transform
@@ -13999,7 +14530,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
269:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 269
components:
- type: Transform
@@ -14011,7 +14543,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
268:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 270
components:
- type: Transform
@@ -14022,7 +14555,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19597:
- - DoorStatus: InputA
+ - - DoorStatus
+ - InputA
- uid: 271
components:
- type: Transform
@@ -14033,7 +14567,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19597:
- - DoorStatus: InputB
+ - - DoorStatus
+ - InputB
- uid: 272
components:
- type: Transform
@@ -14045,7 +14580,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
248:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- proto: AirlockExternalGlassLocked
entities:
- uid: 273
@@ -14059,7 +14595,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
298:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 274
components:
- type: Transform
@@ -14084,7 +14621,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
243:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 277
components:
- type: Transform
@@ -14095,7 +14633,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
281:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 278
components:
- type: Transform
@@ -14106,7 +14645,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
299:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 279
components:
- type: Transform
@@ -14117,7 +14657,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
280:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 280
components:
- type: Transform
@@ -14128,7 +14669,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
279:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 281
components:
- type: Transform
@@ -14139,7 +14681,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
277:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 282
components:
- type: Transform
@@ -14158,7 +14701,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
300:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
+ - uid: 516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,-73.5
+ parent: 2
- proto: AirlockExternalGlassShuttleArrivalsLocked
entities:
- uid: 284
@@ -14253,15 +14803,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19598:
- - DoorStatus: InputA
- - DockStatus: InputB
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 296
- components:
- - type: Transform
- pos: -81.5,-82.5
- parent: 2
+ - - DoorStatus
+ - InputA
+ - - DockStatus
+ - InputB
- type: DeviceLinkSink
invokeCounter: 1
- uid: 297
@@ -14283,7 +14828,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
273:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 299
components:
- type: Transform
@@ -14294,7 +14840,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
278:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 300
components:
- type: Transform
@@ -14305,7 +14852,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
283:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- proto: AirlockFreezerHydroponicsLocked
entities:
- uid: 301
@@ -14334,9 +14882,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
172:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
171:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
- uid: 304
components:
- type: Transform
@@ -14348,9 +14898,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
171:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
172:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
- uid: 305
components:
- type: Transform
@@ -14564,9 +15116,9 @@ entities:
rot: 1.5707963267948966 rad
pos: -56.5,-19.5
parent: 2
-- proto: AirlockHydroponics
+- proto: AirlockHydroponicsLocked
entities:
- - uid: 339
+ - uid: 449
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -14595,6 +15147,12 @@ entities:
- type: Transform
pos: -87.5,-19.5
parent: 2
+ - uid: 1439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-26.5
+ parent: 2
- proto: AirlockMaintBarLocked
entities:
- uid: 343
@@ -14603,6 +15161,14 @@ entities:
rot: 1.5707963267948966 rad
pos: -70.5,-25.5
parent: 2
+- proto: AirlockMaintBlueShieldLocked
+ entities:
+ - uid: 634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-65.5
+ parent: 2
- proto: AirlockMaintCargoLocked
entities:
- uid: 344
@@ -14748,7 +15314,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
390:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 366
components:
- type: Transform
@@ -14900,7 +15467,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
365:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 391
components:
- type: Transform
@@ -15076,11 +15644,6 @@ entities:
- type: Transform
pos: -75.5,-20.5
parent: 2
- - uid: 422
- components:
- - type: Transform
- pos: -75.5,-23.5
- parent: 2
- uid: 423
components:
- type: Transform
@@ -15197,6 +15760,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -16.5,-20.5
parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ pos: -75.5,-23.5
+ parent: 2
- proto: AirlockMaintMedLocked
entities:
- uid: 444
@@ -15231,16 +15799,6 @@ entities:
parent: 2
- proto: AirlockMaintSecLocked
entities:
- - uid: 449
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-26.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 20652:
- - DoorStatus: Toggle
- uid: 450
components:
- type: Transform
@@ -15480,7 +16038,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
488:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 487
components:
- type: Transform
@@ -15492,7 +16051,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
489:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 488
components:
- type: Transform
@@ -15504,7 +16064,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
486:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 489
components:
- type: Transform
@@ -15516,7 +16077,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
487:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 490
components:
- type: Transform
@@ -15653,14 +16215,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -97.5,-34.5
parent: 2
-- proto: AirlockSecurityLocked
- entities:
- - uid: 512
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-26.5
- parent: 2
- proto: AirlockServiceLocked
entities:
- uid: 513
@@ -15681,12 +16235,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -56.5,-38.5
parent: 2
- - uid: 516
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-58.5
- parent: 2
- proto: AirlockTheatreLocked
entities:
- uid: 517
@@ -15722,7 +16270,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
521:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- uid: 521
components:
- type: Transform
@@ -15734,9 +16283,19 @@ entities:
- type: DeviceLinkSource
linkedPorts:
520:
- - DoorStatus: DoorBolt
+ - - DoorStatus
+ - DoorBolt
- proto: AirSensor
entities:
+ - uid: 296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-61.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27320
- uid: 522
components:
- type: Transform
@@ -16629,8 +17188,6 @@ entities:
pos: -115.5,-31.5
parent: 2
- type: DeviceNetwork
- configurators:
- - invalid
deviceLists:
- 116
- uid: 628
@@ -16639,19 +17196,84 @@ entities:
pos: -111.5,-31.5
parent: 2
- type: DeviceNetwork
- configurators:
- - invalid
deviceLists:
- 116
- - uid: 629
+ - uid: 27403
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -92.5,-62.5
+ pos: -89.5,-68.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 117
+ - 27318
+ - uid: 27404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-75.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-73.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27319
+ - uid: 27408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-76.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27319
+ - uid: 27412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-63.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-73.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27321
+ - uid: 27418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-68.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27321
+ - uid: 27425
+ components:
+ - type: Transform
+ pos: -97.5,-59.5
+ parent: 2
+ - uid: 27433
+ components:
+ - type: Transform
+ pos: -89.5,-59.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27435
- proto: AlertsComputerCircuitboard
entities:
- uid: 630
@@ -16680,14 +17302,6 @@ entities:
- type: Transform
pos: -67.5,-72.5
parent: 2
-- proto: AlwaysPoweredlightBlue
- entities:
- - uid: 634
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,6.5
- parent: 2
- proto: AlwaysPoweredLightExterior
entities:
- uid: 635
@@ -16803,6 +17417,44 @@ entities:
- type: Transform
pos: -132.72614,-46.565205
parent: 2
+- proto: APCBasic
+ entities:
+ - uid: 22527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-72.5
+ parent: 2
+ - uid: 25887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-65.5
+ parent: 2
+ - uid: 26167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-69.5
+ parent: 2
+ - uid: 26170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-73.5
+ parent: 2
+ - uid: 27232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-59.5
+ parent: 2
+ - uid: 27577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-62.5
+ parent: 2
- proto: APCElectronics
entities:
- uid: 20889
@@ -17487,13 +18139,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -70.5,-3.5
parent: 2
- - uid: 744
- components:
- - type: MetaData
- name: Репортеры ЛКП
- - type: Transform
- pos: -94.5,-60.5
- parent: 2
- proto: AppraisalTool
entities:
- uid: 745
@@ -17662,21 +18307,6 @@ entities:
parent: 2
- proto: AsteroidRock
entities:
- - uid: 773
- components:
- - type: Transform
- pos: -94.5,-68.5
- parent: 2
- - uid: 774
- components:
- - type: Transform
- pos: -97.5,-63.5
- parent: 2
- - uid: 775
- components:
- - type: Transform
- pos: -97.5,-65.5
- parent: 2
- uid: 776
components:
- type: Transform
@@ -17790,7 +18420,7 @@ entities:
- uid: 798
components:
- type: Transform
- pos: -107.5,34.5
+ pos: -73.5,-26.5
parent: 2
- uid: 799
components:
@@ -17827,11 +18457,6 @@ entities:
- type: Transform
pos: -91.5,1.5
parent: 2
- - uid: 806
- components:
- - type: Transform
- pos: -96.5,-71.5
- parent: 2
- uid: 807
components:
- type: Transform
@@ -17847,11 +18472,6 @@ entities:
- type: Transform
pos: -99.5,-6.5
parent: 2
- - uid: 810
- components:
- - type: Transform
- pos: -91.5,-69.5
- parent: 2
- uid: 811
components:
- type: Transform
@@ -17867,11 +18487,6 @@ entities:
- type: Transform
pos: -109.5,36.5
parent: 2
- - uid: 814
- components:
- - type: Transform
- pos: -107.5,35.5
- parent: 2
- uid: 815
components:
- type: Transform
@@ -17937,11 +18552,6 @@ entities:
- type: Transform
pos: -87.5,-11.5
parent: 2
- - uid: 828
- components:
- - type: Transform
- pos: -92.5,-69.5
- parent: 2
- uid: 829
components:
- type: Transform
@@ -18137,11 +18747,6 @@ entities:
- type: Transform
pos: -92.5,-10.5
parent: 2
- - uid: 868
- components:
- - type: Transform
- pos: -92.5,-70.5
- parent: 2
- uid: 869
components:
- type: Transform
@@ -18152,21 +18757,11 @@ entities:
- type: Transform
pos: -91.5,2.5
parent: 2
- - uid: 871
- components:
- - type: Transform
- pos: -92.5,-71.5
- parent: 2
- uid: 872
components:
- type: Transform
pos: -127.5,20.5
parent: 2
- - uid: 873
- components:
- - type: Transform
- pos: -93.5,-69.5
- parent: 2
- uid: 874
components:
- type: Transform
@@ -18202,11 +18797,6 @@ entities:
- type: Transform
pos: -91.5,-7.5
parent: 2
- - uid: 881
- components:
- - type: Transform
- pos: -91.5,-8.5
- parent: 2
- uid: 882
components:
- type: Transform
@@ -18292,21 +18882,6 @@ entities:
- type: Transform
pos: -95.5,-7.5
parent: 2
- - uid: 899
- components:
- - type: Transform
- pos: -100.5,-58.5
- parent: 2
- - uid: 900
- components:
- - type: Transform
- pos: -93.5,-9.5
- parent: 2
- - uid: 901
- components:
- - type: Transform
- pos: -98.5,-58.5
- parent: 2
- uid: 902
components:
- type: Transform
@@ -18332,11 +18907,6 @@ entities:
- type: Transform
pos: -98.5,-53.5
parent: 2
- - uid: 907
- components:
- - type: Transform
- pos: -97.5,-58.5
- parent: 2
- uid: 908
components:
- type: Transform
@@ -18362,11 +18932,6 @@ entities:
- type: Transform
pos: -97.5,-49.5
parent: 2
- - uid: 913
- components:
- - type: Transform
- pos: -98.5,-59.5
- parent: 2
- uid: 914
components:
- type: Transform
@@ -18412,21 +18977,11 @@ entities:
- type: Transform
pos: -97.5,-53.5
parent: 2
- - uid: 923
- components:
- - type: Transform
- pos: -100.5,-59.5
- parent: 2
- uid: 924
components:
- type: Transform
pos: -59.5,-80.5
parent: 2
- - uid: 925
- components:
- - type: Transform
- pos: -97.5,-59.5
- parent: 2
- uid: 926
components:
- type: Transform
@@ -18452,26 +19007,11 @@ entities:
- type: Transform
pos: -101.5,-61.5
parent: 2
- - uid: 931
- components:
- - type: Transform
- pos: -98.5,-61.5
- parent: 2
- uid: 932
components:
- type: Transform
pos: -48.5,-75.5
parent: 2
- - uid: 933
- components:
- - type: Transform
- pos: -98.5,-62.5
- parent: 2
- - uid: 934
- components:
- - type: Transform
- pos: -62.5,-74.5
- parent: 2
- uid: 935
components:
- type: Transform
@@ -18492,11 +19032,6 @@ entities:
- type: Transform
pos: -102.5,-61.5
parent: 2
- - uid: 939
- components:
- - type: Transform
- pos: -99.5,-58.5
- parent: 2
- uid: 940
components:
- type: Transform
@@ -18507,11 +19042,6 @@ entities:
- type: Transform
pos: -49.5,-74.5
parent: 2
- - uid: 942
- components:
- - type: Transform
- pos: -98.5,-63.5
- parent: 2
- uid: 943
components:
- type: Transform
@@ -18532,16 +19062,6 @@ entities:
- type: Transform
pos: -93.5,-10.5
parent: 2
- - uid: 947
- components:
- - type: Transform
- pos: -99.5,-59.5
- parent: 2
- - uid: 948
- components:
- - type: Transform
- pos: -99.5,-62.5
- parent: 2
- uid: 949
components:
- type: Transform
@@ -18577,11 +19097,6 @@ entities:
- type: Transform
pos: -102.5,-49.5
parent: 2
- - uid: 956
- components:
- - type: Transform
- pos: -98.5,-60.5
- parent: 2
- uid: 957
components:
- type: Transform
@@ -18677,11 +19192,6 @@ entities:
- type: Transform
pos: -87.5,-15.5
parent: 2
- - uid: 976
- components:
- - type: Transform
- pos: -102.5,-62.5
- parent: 2
- uid: 977
components:
- type: Transform
@@ -18727,11 +19237,6 @@ entities:
- type: Transform
pos: -105.5,-7.5
parent: 2
- - uid: 986
- components:
- - type: Transform
- pos: -92.5,-8.5
- parent: 2
- uid: 987
components:
- type: Transform
@@ -18902,21 +19407,11 @@ entities:
- type: Transform
pos: -100.5,-6.5
parent: 2
- - uid: 1021
- components:
- - type: Transform
- pos: -93.5,-7.5
- parent: 2
- uid: 1022
components:
- type: Transform
pos: -101.5,-5.5
parent: 2
- - uid: 1023
- components:
- - type: Transform
- pos: -93.5,-8.5
- parent: 2
- uid: 1024
components:
- type: Transform
@@ -18947,11 +19442,6 @@ entities:
- type: Transform
pos: -44.5,-78.5
parent: 2
- - uid: 1030
- components:
- - type: Transform
- pos: -62.5,-75.5
- parent: 2
- uid: 1031
components:
- type: Transform
@@ -18977,11 +19467,6 @@ entities:
- type: Transform
pos: -91.5,-11.5
parent: 2
- - uid: 1036
- components:
- - type: Transform
- pos: -92.5,-7.5
- parent: 2
- uid: 1037
components:
- type: Transform
@@ -19312,11 +19797,6 @@ entities:
- type: Transform
pos: -110.5,-38.5
parent: 2
- - uid: 1103
- components:
- - type: Transform
- pos: -63.5,-74.5
- parent: 2
- uid: 1104
components:
- type: Transform
@@ -19337,11 +19817,6 @@ entities:
- type: Transform
pos: -63.5,-71.5
parent: 2
- - uid: 1108
- components:
- - type: Transform
- pos: -62.5,-73.5
- parent: 2
- uid: 1109
components:
- type: Transform
@@ -19357,16 +19832,6 @@ entities:
- type: Transform
pos: -63.5,-69.5
parent: 2
- - uid: 1112
- components:
- - type: Transform
- pos: -63.5,-72.5
- parent: 2
- - uid: 1113
- components:
- - type: Transform
- pos: -63.5,-75.5
- parent: 2
- uid: 1114
components:
- type: Transform
@@ -19427,26 +19892,11 @@ entities:
- type: Transform
pos: -62.5,-72.5
parent: 2
- - uid: 1126
- components:
- - type: Transform
- pos: -63.5,-73.5
- parent: 2
- uid: 1127
components:
- type: Transform
pos: -38.5,10.5
parent: 2
- - uid: 1128
- components:
- - type: Transform
- pos: -96.5,-58.5
- parent: 2
- - uid: 1129
- components:
- - type: Transform
- pos: -88.5,-58.5
- parent: 2
- uid: 1130
components:
- type: Transform
@@ -19472,11 +19922,6 @@ entities:
- type: Transform
pos: -13.5,-59.5
parent: 2
- - uid: 1135
- components:
- - type: Transform
- pos: -89.5,-58.5
- parent: 2
- uid: 1136
components:
- type: Transform
@@ -19492,11 +19937,6 @@ entities:
- type: Transform
pos: -16.5,-56.5
parent: 2
- - uid: 1139
- components:
- - type: Transform
- pos: -94.5,-72.5
- parent: 2
- uid: 1140
components:
- type: Transform
@@ -19642,11 +20082,6 @@ entities:
- type: Transform
pos: -109.5,-36.5
parent: 2
- - uid: 1169
- components:
- - type: Transform
- pos: -95.5,-72.5
- parent: 2
- uid: 1170
components:
- type: Transform
@@ -19672,21 +20107,11 @@ entities:
- type: Transform
pos: -101.5,-20.5
parent: 2
- - uid: 1175
- components:
- - type: Transform
- pos: -93.5,-72.5
- parent: 2
- uid: 1176
components:
- type: Transform
pos: -81.5,-59.5
parent: 2
- - uid: 1177
- components:
- - type: Transform
- pos: -87.5,-58.5
- parent: 2
- uid: 1178
components:
- type: Transform
@@ -19742,11 +20167,6 @@ entities:
- type: Transform
pos: -18.5,-56.5
parent: 2
- - uid: 1189
- components:
- - type: Transform
- pos: -97.5,-70.5
- parent: 2
- uid: 1190
components:
- type: Transform
@@ -19777,26 +20197,11 @@ entities:
- type: Transform
pos: -37.5,21.5
parent: 2
- - uid: 1196
- components:
- - type: Transform
- pos: -34.5,23.5
- parent: 2
- - uid: 1197
- components:
- - type: Transform
- pos: -33.5,23.5
- parent: 2
- uid: 1198
components:
- type: Transform
pos: -35.5,23.5
parent: 2
- - uid: 1199
- components:
- - type: Transform
- pos: -32.5,23.5
- parent: 2
- uid: 1200
components:
- type: Transform
@@ -19807,16 +20212,6 @@ entities:
- type: Transform
pos: -34.5,24.5
parent: 2
- - uid: 1202
- components:
- - type: Transform
- pos: -32.5,24.5
- parent: 2
- - uid: 1203
- components:
- - type: Transform
- pos: -33.5,24.5
- parent: 2
- uid: 1204
components:
- type: Transform
@@ -20047,16 +20442,6 @@ entities:
- type: Transform
pos: -16.5,20.5
parent: 2
- - uid: 1250
- components:
- - type: Transform
- pos: -16.5,19.5
- parent: 2
- - uid: 1251
- components:
- - type: Transform
- pos: -16.5,18.5
- parent: 2
- uid: 1252
components:
- type: Transform
@@ -20067,16 +20452,6 @@ entities:
- type: Transform
pos: -15.5,20.5
parent: 2
- - uid: 1254
- components:
- - type: Transform
- pos: -15.5,19.5
- parent: 2
- - uid: 1255
- components:
- - type: Transform
- pos: -15.5,18.5
- parent: 2
- uid: 1256
components:
- type: Transform
@@ -20102,16 +20477,6 @@ entities:
- type: Transform
pos: -13.5,15.5
parent: 2
- - uid: 1261
- components:
- - type: Transform
- pos: -13.5,14.5
- parent: 2
- - uid: 1262
- components:
- - type: Transform
- pos: -13.5,13.5
- parent: 2
- uid: 1263
components:
- type: Transform
@@ -20152,16 +20517,6 @@ entities:
- type: Transform
pos: -14.5,15.5
parent: 2
- - uid: 1271
- components:
- - type: Transform
- pos: -14.5,14.5
- parent: 2
- - uid: 1272
- components:
- - type: Transform
- pos: -14.5,13.5
- parent: 2
- uid: 1273
components:
- type: Transform
@@ -20188,11 +20543,6 @@ entities:
pos: -12.5,10.5
parent: 2
- uid: 1278
- components:
- - type: Transform
- pos: -12.5,13.5
- parent: 2
- - uid: 1279
components:
- type: Transform
pos: -12.5,14.5
@@ -20417,31 +20767,6 @@ entities:
- type: Transform
pos: -11.5,-22.5
parent: 2
- - uid: 1324
- components:
- - type: Transform
- pos: -11.5,-23.5
- parent: 2
- - uid: 1325
- components:
- - type: Transform
- pos: -11.5,-24.5
- parent: 2
- - uid: 1326
- components:
- - type: Transform
- pos: -10.5,-22.5
- parent: 2
- - uid: 1327
- components:
- - type: Transform
- pos: -10.5,-23.5
- parent: 2
- - uid: 1328
- components:
- - type: Transform
- pos: -10.5,-24.5
- parent: 2
- uid: 1329
components:
- type: Transform
@@ -20652,11 +20977,6 @@ entities:
- type: Transform
pos: -56.5,-67.5
parent: 2
- - uid: 1371
- components:
- - type: Transform
- pos: -93.5,-73.5
- parent: 2
- uid: 1372
components:
- type: Transform
@@ -20702,35 +21022,20 @@ entities:
- type: Transform
pos: -74.5,-32.5
parent: 2
- - uid: 1381
- components:
- - type: Transform
- pos: -86.5,-67.5
- parent: 2
- uid: 1382
components:
- type: Transform
- pos: -86.5,-68.5
- parent: 2
- - uid: 1383
- components:
- - type: Transform
- pos: -87.5,-69.5
+ pos: -85.5,-70.5
parent: 2
- uid: 1384
components:
- type: Transform
- pos: -86.5,-69.5
- parent: 2
- - uid: 1385
- components:
- - type: Transform
- pos: -85.5,-69.5
+ pos: -85.5,-72.5
parent: 2
- uid: 1386
components:
- type: Transform
- pos: -85.5,-68.5
+ pos: -85.5,-71.5
parent: 2
- uid: 1387
components:
@@ -20747,11 +21052,6 @@ entities:
- type: Transform
pos: -83.5,-70.5
parent: 2
- - uid: 1390
- components:
- - type: Transform
- pos: -94.5,-67.5
- parent: 2
- uid: 1391
components:
- type: Transform
@@ -20762,11 +21062,6 @@ entities:
- type: Transform
pos: -83.5,-64.5
parent: 2
- - uid: 1393
- components:
- - type: Transform
- pos: -83.5,-63.5
- parent: 2
- uid: 1394
components:
- type: Transform
@@ -20777,31 +21072,6 @@ entities:
- type: Transform
pos: -84.5,-67.5
parent: 2
- - uid: 1396
- components:
- - type: Transform
- pos: -86.5,-66.5
- parent: 2
- - uid: 1397
- components:
- - type: Transform
- pos: -86.5,-65.5
- parent: 2
- - uid: 1398
- components:
- - type: Transform
- pos: -86.5,-64.5
- parent: 2
- - uid: 1399
- components:
- - type: Transform
- pos: -95.5,-67.5
- parent: 2
- - uid: 1400
- components:
- - type: Transform
- pos: -95.5,-68.5
- parent: 2
- uid: 1401
components:
- type: Transform
@@ -20817,11 +21087,6 @@ entities:
- type: Transform
pos: -84.5,-63.5
parent: 2
- - uid: 1404
- components:
- - type: Transform
- pos: -85.5,-67.5
- parent: 2
- uid: 1405
components:
- type: Transform
@@ -20937,11 +21202,6 @@ entities:
- type: Transform
pos: -118.5,-31.5
parent: 2
- - uid: 1428
- components:
- - type: Transform
- pos: -96.5,-70.5
- parent: 2
- uid: 1429
components:
- type: Transform
@@ -20987,16 +21247,6 @@ entities:
- type: Transform
pos: -82.5,8.5
parent: 2
- - uid: 1438
- components:
- - type: Transform
- pos: -75.5,-27.5
- parent: 2
- - uid: 1439
- components:
- - type: Transform
- pos: -74.5,-28.5
- parent: 2
- uid: 1440
components:
- type: Transform
@@ -21027,11 +21277,6 @@ entities:
- type: Transform
pos: -113.5,33.5
parent: 2
- - uid: 1446
- components:
- - type: Transform
- pos: -115.5,33.5
- parent: 2
- uid: 1447
components:
- type: Transform
@@ -21047,21 +21292,11 @@ entities:
- type: Transform
pos: -106.5,37.5
parent: 2
- - uid: 1450
- components:
- - type: Transform
- pos: -117.5,33.5
- parent: 2
- uid: 1451
components:
- type: Transform
pos: -117.5,34.5
parent: 2
- - uid: 1452
- components:
- - type: Transform
- pos: -117.5,35.5
- parent: 2
- uid: 1453
components:
- type: Transform
@@ -21112,11 +21347,6 @@ entities:
- type: Transform
pos: -85.5,-59.5
parent: 2
- - uid: 1463
- components:
- - type: Transform
- pos: -87.5,-59.5
- parent: 2
- uid: 1464
components:
- type: Transform
@@ -21197,11 +21427,6 @@ entities:
- type: Transform
pos: -72.5,-42.5
parent: 2
- - uid: 1480
- components:
- - type: Transform
- pos: -95.5,-71.5
- parent: 2
- uid: 1481
components:
- type: Transform
@@ -21302,11 +21527,6 @@ entities:
- type: Transform
pos: -138.5,-24.5
parent: 2
- - uid: 1501
- components:
- - type: Transform
- pos: -74.5,-27.5
- parent: 2
- uid: 1502
components:
- type: Transform
@@ -21370,87 +21590,7 @@ entities:
- uid: 1514
components:
- type: Transform
- pos: -94.5,-73.5
- parent: 2
- - uid: 1515
- components:
- - type: Transform
- pos: -98.5,-68.5
- parent: 2
- - uid: 1516
- components:
- - type: Transform
- pos: -102.5,-68.5
- parent: 2
- - uid: 1517
- components:
- - type: Transform
- pos: -98.5,-65.5
- parent: 2
- - uid: 1518
- components:
- - type: Transform
- pos: -98.5,-64.5
- parent: 2
- - uid: 1519
- components:
- - type: Transform
- pos: -103.5,-68.5
- parent: 2
- - uid: 1520
- components:
- - type: Transform
- pos: -96.5,-69.5
- parent: 2
- - uid: 1521
- components:
- - type: Transform
- pos: -102.5,-69.5
- parent: 2
- - uid: 1522
- components:
- - type: Transform
- pos: -101.5,-69.5
- parent: 2
- - uid: 1523
- components:
- - type: Transform
- pos: -98.5,-69.5
- parent: 2
- - uid: 1524
- components:
- - type: Transform
- pos: -97.5,-69.5
- parent: 2
- - uid: 1525
- components:
- - type: Transform
- pos: -95.5,-69.5
- parent: 2
- - uid: 1526
- components:
- - type: Transform
- pos: -94.5,-69.5
- parent: 2
- - uid: 1527
- components:
- - type: Transform
- pos: -98.5,-70.5
- parent: 2
- - uid: 1528
- components:
- - type: Transform
- pos: -87.5,-70.5
- parent: 2
- - uid: 1529
- components:
- - type: Transform
- pos: -85.5,-70.5
- parent: 2
- - uid: 1530
- components:
- - type: Transform
- pos: -86.5,-70.5
+ pos: -88.5,-59.5
parent: 2
- uid: 1531
components:
@@ -21460,17 +21600,7 @@ entities:
- uid: 1532
components:
- type: Transform
- pos: -101.5,-70.5
- parent: 2
- - uid: 1533
- components:
- - type: Transform
- pos: -100.5,-70.5
- parent: 2
- - uid: 1534
- components:
- - type: Transform
- pos: -95.5,-70.5
+ pos: -105.5,-71.5
parent: 2
- uid: 1535
components:
@@ -21482,46 +21612,6 @@ entities:
- type: Transform
pos: -82.5,-71.5
parent: 2
- - uid: 1537
- components:
- - type: Transform
- pos: -100.5,-71.5
- parent: 2
- - uid: 1538
- components:
- - type: Transform
- pos: -99.5,-72.5
- parent: 2
- - uid: 1539
- components:
- - type: Transform
- pos: -100.5,-72.5
- parent: 2
- - uid: 1540
- components:
- - type: Transform
- pos: -97.5,-71.5
- parent: 2
- - uid: 1541
- components:
- - type: Transform
- pos: -86.5,-71.5
- parent: 2
- - uid: 1542
- components:
- - type: Transform
- pos: -86.5,-72.5
- parent: 2
- - uid: 1543
- components:
- - type: Transform
- pos: -85.5,-71.5
- parent: 2
- - uid: 1544
- components:
- - type: Transform
- pos: -85.5,-72.5
- parent: 2
- uid: 1545
components:
- type: Transform
@@ -21542,51 +21632,16 @@ entities:
- type: Transform
pos: -80.5,-73.5
parent: 2
- - uid: 1549
- components:
- - type: Transform
- pos: -99.5,-73.5
- parent: 2
- - uid: 1550
- components:
- - type: Transform
- pos: -98.5,-73.5
- parent: 2
- - uid: 1551
- components:
- - type: Transform
- pos: -97.5,-73.5
- parent: 2
- - uid: 1552
- components:
- - type: Transform
- pos: -86.5,-73.5
- parent: 2
- - uid: 1553
- components:
- - type: Transform
- pos: -85.5,-73.5
- parent: 2
- uid: 1554
components:
- type: Transform
pos: -84.5,-73.5
parent: 2
- - uid: 1555
- components:
- - type: Transform
- pos: -86.5,-74.5
- parent: 2
- uid: 1556
components:
- type: Transform
pos: -84.5,-74.5
parent: 2
- - uid: 1557
- components:
- - type: Transform
- pos: -87.5,-74.5
- parent: 2
- uid: 1558
components:
- type: Transform
@@ -21602,36 +21657,6 @@ entities:
- type: Transform
pos: -78.5,-74.5
parent: 2
- - uid: 1561
- components:
- - type: Transform
- pos: -97.5,-74.5
- parent: 2
- - uid: 1562
- components:
- - type: Transform
- pos: -96.5,-74.5
- parent: 2
- - uid: 1563
- components:
- - type: Transform
- pos: -92.5,-74.5
- parent: 2
- - uid: 1564
- components:
- - type: Transform
- pos: -91.5,-74.5
- parent: 2
- - uid: 1565
- components:
- - type: Transform
- pos: -87.5,-75.5
- parent: 2
- - uid: 1566
- components:
- - type: Transform
- pos: -86.5,-75.5
- parent: 2
- uid: 1567
components:
- type: Transform
@@ -21647,41 +21672,6 @@ entities:
- type: Transform
pos: -79.5,-75.5
parent: 2
- - uid: 1570
- components:
- - type: Transform
- pos: -96.5,-75.5
- parent: 2
- - uid: 1571
- components:
- - type: Transform
- pos: -95.5,-75.5
- parent: 2
- - uid: 1572
- components:
- - type: Transform
- pos: -94.5,-75.5
- parent: 2
- - uid: 1573
- components:
- - type: Transform
- pos: -91.5,-75.5
- parent: 2
- - uid: 1574
- components:
- - type: Transform
- pos: -90.5,-75.5
- parent: 2
- - uid: 1575
- components:
- - type: Transform
- pos: -89.5,-75.5
- parent: 2
- - uid: 1576
- components:
- - type: Transform
- pos: -88.5,-75.5
- parent: 2
- uid: 1577
components:
- type: Transform
@@ -21695,12 +21685,7 @@ entities:
- uid: 1579
components:
- type: Transform
- pos: -87.5,-76.5
- parent: 2
- - uid: 1580
- components:
- - type: Transform
- pos: -85.5,-76.5
+ pos: -89.5,-58.5
parent: 2
- uid: 1581
components:
@@ -21712,45 +21697,20 @@ entities:
- type: Transform
pos: -76.5,-76.5
parent: 2
- - uid: 1583
- components:
- - type: Transform
- pos: -94.5,-76.5
- parent: 2
- - uid: 1584
- components:
- - type: Transform
- pos: -93.5,-76.5
- parent: 2
- - uid: 1585
- components:
- - type: Transform
- pos: -86.5,-76.5
- parent: 2
- - uid: 1586
- components:
- - type: Transform
- pos: -93.5,-77.5
- parent: 2
- - uid: 1587
- components:
- - type: Transform
- pos: -92.5,-77.5
- parent: 2
- uid: 1588
components:
- type: Transform
- pos: -90.5,-77.5
+ pos: -86.5,-69.5
parent: 2
- uid: 1589
components:
- type: Transform
- pos: -89.5,-77.5
+ pos: -85.5,-67.5
parent: 2
- uid: 1590
components:
- type: Transform
- pos: -91.5,-77.5
+ pos: -86.5,-67.5
parent: 2
- uid: 1591
components:
@@ -21802,11 +21762,6 @@ entities:
- type: Transform
pos: -69.5,-78.5
parent: 2
- - uid: 1601
- components:
- - type: Transform
- pos: -87.5,-78.5
- parent: 2
- uid: 1602
components:
- type: Transform
@@ -21835,17 +21790,7 @@ entities:
- uid: 1607
components:
- type: Transform
- pos: -89.5,-78.5
- parent: 2
- - uid: 1608
- components:
- - type: Transform
- pos: -88.5,-78.5
- parent: 2
- - uid: 1609
- components:
- - type: Transform
- pos: -86.5,-78.5
+ pos: -85.5,-69.5
parent: 2
- uid: 1610
components:
@@ -21887,16 +21832,6 @@ entities:
- type: Transform
pos: -62.5,-79.5
parent: 2
- - uid: 1618
- components:
- - type: Transform
- pos: -86.5,-79.5
- parent: 2
- - uid: 1619
- components:
- - type: Transform
- pos: -85.5,-79.5
- parent: 2
- uid: 1620
components:
- type: Transform
@@ -22552,15 +22487,10 @@ entities:
- type: Transform
pos: -49.5,-68.5
parent: 2
- - uid: 1751
- components:
- - type: Transform
- pos: -92.5,-72.5
- parent: 2
- uid: 1752
components:
- type: Transform
- pos: -92.5,-73.5
+ pos: -87.5,-59.5
parent: 2
- uid: 1753
components:
@@ -23037,11 +22967,6 @@ entities:
- type: Transform
pos: -126.5,20.5
parent: 2
- - uid: 1848
- components:
- - type: Transform
- pos: -106.5,33.5
- parent: 2
- uid: 1849
components:
- type: Transform
@@ -23062,21 +22987,11 @@ entities:
- type: Transform
pos: -106.5,36.5
parent: 2
- - uid: 1853
- components:
- - type: Transform
- pos: -107.5,33.5
- parent: 2
- uid: 1854
components:
- type: Transform
pos: -106.5,35.5
parent: 2
- - uid: 1855
- components:
- - type: Transform
- pos: -106.5,34.5
- parent: 2
- uid: 1856
components:
- type: Transform
@@ -23112,40 +23027,15 @@ entities:
- type: Transform
pos: -12.5,-57.5
parent: 2
- - uid: 1863
- components:
- - type: Transform
- pos: -22.5,-67.5
- parent: 2
- uid: 1864
components:
- type: Transform
pos: -19.5,-57.5
parent: 2
- - uid: 1865
- components:
- - type: Transform
- pos: -90.5,-69.5
- parent: 2
- uid: 1866
components:
- type: Transform
- pos: -91.5,-70.5
- parent: 2
- - uid: 1867
- components:
- - type: Transform
- pos: -93.5,-70.5
- parent: 2
- - uid: 1868
- components:
- - type: Transform
- pos: -89.5,-69.5
- parent: 2
- - uid: 1869
- components:
- - type: Transform
- pos: -88.5,-69.5
+ pos: -85.5,-73.5
parent: 2
- uid: 1870
components:
@@ -23282,11 +23172,6 @@ entities:
- type: Transform
pos: -125.5,-29.5
parent: 2
- - uid: 1897
- components:
- - type: Transform
- pos: -21.5,-67.5
- parent: 2
- uid: 1898
components:
- type: Transform
@@ -23312,16 +23197,6 @@ entities:
- type: Transform
pos: -102.5,32.5
parent: 2
- - uid: 1903
- components:
- - type: Transform
- pos: -102.5,34.5
- parent: 2
- - uid: 1904
- components:
- - type: Transform
- pos: -108.5,33.5
- parent: 2
- uid: 1905
components:
- type: Transform
@@ -23342,11 +23217,6 @@ entities:
- type: Transform
pos: -107.5,38.5
parent: 2
- - uid: 1909
- components:
- - type: Transform
- pos: -88.5,-59.5
- parent: 2
- uid: 1910
components:
- type: Transform
@@ -23357,16 +23227,6 @@ entities:
- type: Transform
pos: -61.5,-67.5
parent: 2
- - uid: 1912
- components:
- - type: Transform
- pos: -96.5,-59.5
- parent: 2
- - uid: 1913
- components:
- - type: Transform
- pos: -89.5,-59.5
- parent: 2
- uid: 1914
components:
- type: Transform
@@ -23407,21 +23267,11 @@ entities:
- type: Transform
pos: -61.5,-77.5
parent: 2
- - uid: 1922
- components:
- - type: Transform
- pos: -61.5,-74.5
- parent: 2
- uid: 1923
components:
- type: Transform
pos: -60.5,-77.5
parent: 2
- - uid: 1924
- components:
- - type: Transform
- pos: -61.5,-75.5
- parent: 2
- uid: 1925
components:
- type: Transform
@@ -23522,11 +23372,6 @@ entities:
- type: Transform
pos: -19.5,-69.5
parent: 2
- - uid: 1945
- components:
- - type: Transform
- pos: -22.5,-68.5
- parent: 2
- uid: 1946
components:
- type: Transform
@@ -23557,16 +23402,6 @@ entities:
- type: Transform
pos: -101.5,-50.5
parent: 2
- - uid: 1952
- components:
- - type: Transform
- pos: -43.5,-76.5
- parent: 2
- - uid: 1953
- components:
- - type: Transform
- pos: -43.5,-75.5
- parent: 2
- uid: 1954
components:
- type: Transform
@@ -23577,16 +23412,6 @@ entities:
- type: Transform
pos: -45.5,-75.5
parent: 2
- - uid: 1956
- components:
- - type: Transform
- pos: -44.5,-76.5
- parent: 2
- - uid: 1957
- components:
- - type: Transform
- pos: -44.5,-75.5
- parent: 2
- uid: 1958
components:
- type: Transform
@@ -23797,11 +23622,6 @@ entities:
- type: Transform
pos: -82.5,-62.5
parent: 2
- - uid: 2000
- components:
- - type: Transform
- pos: -82.5,-63.5
- parent: 2
- uid: 2001
components:
- type: Transform
@@ -23812,11 +23632,6 @@ entities:
- type: Transform
pos: -81.5,-65.5
parent: 2
- - uid: 2003
- components:
- - type: Transform
- pos: -82.5,-64.5
- parent: 2
- uid: 2004
components:
- type: Transform
@@ -23842,101 +23657,16 @@ entities:
- type: Transform
pos: -21.5,-66.5
parent: 2
- - uid: 2009
- components:
- - type: Transform
- pos: -99.5,-68.5
- parent: 2
- - uid: 2010
- components:
- - type: Transform
- pos: -99.5,-67.5
- parent: 2
- - uid: 2011
- components:
- - type: Transform
- pos: -96.5,-67.5
- parent: 2
- - uid: 2012
- components:
- - type: Transform
- pos: -96.5,-68.5
- parent: 2
- - uid: 2013
- components:
- - type: Transform
- pos: -97.5,-68.5
- parent: 2
- - uid: 2014
- components:
- - type: Transform
- pos: -97.5,-66.5
- parent: 2
- - uid: 2015
- components:
- - type: Transform
- pos: -97.5,-61.5
- parent: 2
- - uid: 2016
- components:
- - type: Transform
- pos: -97.5,-67.5
- parent: 2
- uid: 2017
components:
- type: Transform
- pos: -91.5,-68.5
+ pos: -85.5,-74.5
parent: 2
- uid: 2018
components:
- type: Transform
pos: -118.5,-28.5
parent: 2
- - uid: 2019
- components:
- - type: Transform
- pos: -92.5,-68.5
- parent: 2
- - uid: 2020
- components:
- - type: Transform
- pos: -92.5,-67.5
- parent: 2
- - uid: 2021
- components:
- - type: Transform
- pos: -90.5,-68.5
- parent: 2
- - uid: 2022
- components:
- - type: Transform
- pos: -93.5,-68.5
- parent: 2
- - uid: 2023
- components:
- - type: Transform
- pos: -93.5,-67.5
- parent: 2
- - uid: 2024
- components:
- - type: Transform
- pos: -91.5,-67.5
- parent: 2
- - uid: 2025
- components:
- - type: Transform
- pos: -90.5,-67.5
- parent: 2
- - uid: 2026
- components:
- - type: Transform
- pos: -89.5,-67.5
- parent: 2
- - uid: 2027
- components:
- - type: Transform
- pos: -89.5,-68.5
- parent: 2
- uid: 2028
components:
- type: Transform
@@ -23945,107 +23675,17 @@ entities:
- uid: 2029
components:
- type: Transform
- pos: -97.5,-60.5
- parent: 2
- - uid: 2030
- components:
- - type: Transform
- pos: -88.5,-60.5
- parent: 2
- - uid: 2031
- components:
- - type: Transform
- pos: -97.5,-64.5
- parent: 2
- - uid: 2032
- components:
- - type: Transform
- pos: -97.5,-62.5
- parent: 2
- - uid: 2033
- components:
- - type: Transform
- pos: -87.5,-63.5
- parent: 2
- - uid: 2034
- components:
- - type: Transform
- pos: -88.5,-61.5
- parent: 2
- - uid: 2035
- components:
- - type: Transform
- pos: -87.5,-61.5
- parent: 2
- - uid: 2036
- components:
- - type: Transform
- pos: -87.5,-66.5
- parent: 2
- - uid: 2037
- components:
- - type: Transform
- pos: -88.5,-66.5
- parent: 2
- - uid: 2038
- components:
- - type: Transform
- pos: -88.5,-65.5
- parent: 2
- - uid: 2039
- components:
- - type: Transform
- pos: -88.5,-68.5
- parent: 2
- - uid: 2040
- components:
- - type: Transform
- pos: -87.5,-60.5
- parent: 2
- - uid: 2041
- components:
- - type: Transform
- pos: -87.5,-64.5
+ pos: -89.5,-61.5
parent: 2
- uid: 2042
components:
- type: Transform
- pos: -88.5,-62.5
- parent: 2
- - uid: 2043
- components:
- - type: Transform
- pos: -88.5,-63.5
- parent: 2
- - uid: 2044
- components:
- - type: Transform
- pos: -88.5,-67.5
- parent: 2
- - uid: 2045
- components:
- - type: Transform
- pos: -88.5,-64.5
- parent: 2
- - uid: 2046
- components:
- - type: Transform
- pos: -87.5,-67.5
- parent: 2
- - uid: 2047
- components:
- - type: Transform
- pos: -87.5,-62.5
- parent: 2
- - uid: 2048
- components:
- - type: Transform
- pos: -87.5,-65.5
+ pos: -104.5,-71.5
parent: 2
- uid: 2049
components:
- type: Transform
- pos: -87.5,-68.5
+ pos: -103.5,-69.5
parent: 2
- uid: 2050
components:
@@ -24055,15 +23695,435 @@ entities:
- uid: 2051
components:
- type: Transform
- pos: -95.5,-59.5
+ pos: -102.5,-70.5
parent: 2
- uid: 2052
components:
- type: Transform
pos: -115.5,-28.5
parent: 2
+ - uid: 5355
+ components:
+ - type: Transform
+ pos: -102.5,-69.5
+ parent: 2
+ - uid: 5356
+ components:
+ - type: Transform
+ pos: -104.5,-70.5
+ parent: 2
+ - uid: 5357
+ components:
+ - type: Transform
+ pos: -104.5,-72.5
+ parent: 2
+ - uid: 5365
+ components:
+ - type: Transform
+ pos: -103.5,-71.5
+ parent: 2
+ - uid: 8506
+ components:
+ - type: Transform
+ pos: -102.5,-68.5
+ parent: 2
+ - uid: 10919
+ components:
+ - type: Transform
+ pos: -103.5,-70.5
+ parent: 2
+ - uid: 12627
+ components:
+ - type: Transform
+ pos: -103.5,-68.5
+ parent: 2
+ - uid: 13726
+ components:
+ - type: Transform
+ pos: -101.5,-69.5
+ parent: 2
+ - uid: 17070
+ components:
+ - type: Transform
+ pos: -101.5,-70.5
+ parent: 2
+ - uid: 17074
+ components:
+ - type: Transform
+ pos: -102.5,-71.5
+ parent: 2
+ - uid: 17085
+ components:
+ - type: Transform
+ pos: -104.5,-69.5
+ parent: 2
+ - uid: 17087
+ components:
+ - type: Transform
+ pos: -87.5,-60.5
+ parent: 2
+ - uid: 17088
+ components:
+ - type: Transform
+ pos: -86.5,-62.5
+ parent: 2
+ - uid: 20156
+ components:
+ - type: Transform
+ pos: -87.5,-61.5
+ parent: 2
+ - uid: 20715
+ components:
+ - type: Transform
+ pos: -86.5,-63.5
+ parent: 2
+ - uid: 23646
+ components:
+ - type: Transform
+ pos: -86.5,-66.5
+ parent: 2
+ - uid: 23651
+ components:
+ - type: Transform
+ pos: -105.5,-70.5
+ parent: 2
+ - uid: 25518
+ components:
+ - type: Transform
+ pos: -86.5,-68.5
+ parent: 2
+ - uid: 25519
+ components:
+ - type: Transform
+ pos: -86.5,-70.5
+ parent: 2
+ - uid: 25521
+ components:
+ - type: Transform
+ pos: -85.5,-68.5
+ parent: 2
+ - uid: 25524
+ components:
+ - type: Transform
+ pos: -87.5,-58.5
+ parent: 2
+ - uid: 25525
+ components:
+ - type: Transform
+ pos: -88.5,-58.5
+ parent: 2
+ - uid: 25527
+ components:
+ - type: Transform
+ pos: -87.5,-66.5
+ parent: 2
+ - uid: 25528
+ components:
+ - type: Transform
+ pos: -86.5,-64.5
+ parent: 2
+ - uid: 25531
+ components:
+ - type: Transform
+ pos: -86.5,-65.5
+ parent: 2
+ - uid: 27443
+ components:
+ - type: Transform
+ pos: -88.5,-61.5
+ parent: 2
+ - uid: 27549
+ components:
+ - type: Transform
+ pos: -87.5,-62.5
+ parent: 2
+ - uid: 27550
+ components:
+ - type: Transform
+ pos: -87.5,-63.5
+ parent: 2
+ - uid: 27552
+ components:
+ - type: Transform
+ pos: -87.5,-64.5
+ parent: 2
+ - uid: 27553
+ components:
+ - type: Transform
+ pos: -87.5,-65.5
+ parent: 2
+ - uid: 27565
+ components:
+ - type: Transform
+ pos: -83.5,-76.5
+ parent: 2
+ - uid: 27566
+ components:
+ - type: Transform
+ pos: -83.5,-77.5
+ parent: 2
+ - uid: 27567
+ components:
+ - type: Transform
+ pos: -81.5,-77.5
+ parent: 2
+- proto: AsteroidRockPlasma
+ entities:
+ - uid: 881
+ components:
+ - type: Transform
+ pos: -106.5,34.5
+ parent: 2
+ - uid: 900
+ components:
+ - type: Transform
+ pos: -107.5,35.5
+ parent: 2
+ - uid: 934
+ components:
+ - type: Transform
+ pos: -93.5,-7.5
+ parent: 2
+ - uid: 986
+ components:
+ - type: Transform
+ pos: -91.5,-8.5
+ parent: 2
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: -63.5,-75.5
+ parent: 2
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: -92.5,-7.5
+ parent: 2
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: -93.5,-9.5
+ parent: 2
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: -92.5,-8.5
+ parent: 2
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: -63.5,-73.5
+ parent: 2
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: -93.5,-8.5
+ parent: 2
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: -63.5,-74.5
+ parent: 2
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: -62.5,-75.5
+ parent: 2
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: -61.5,-75.5
+ parent: 2
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: -62.5,-73.5
+ parent: 2
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: -61.5,-74.5
+ parent: 2
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: -34.5,23.5
+ parent: 2
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: -33.5,23.5
+ parent: 2
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: -32.5,23.5
+ parent: 2
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: -32.5,24.5
+ parent: 2
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: -33.5,24.5
+ parent: 2
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: -16.5,18.5
+ parent: 2
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: -15.5,19.5
+ parent: 2
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: -16.5,19.5
+ parent: 2
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: -15.5,18.5
+ parent: 2
+ - uid: 1262
+ components:
+ - type: Transform
+ pos: -13.5,14.5
+ parent: 2
+ - uid: 1271
+ components:
+ - type: Transform
+ pos: -14.5,14.5
+ parent: 2
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: -13.5,13.5
+ parent: 2
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: -14.5,13.5
+ parent: 2
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: -12.5,13.5
+ parent: 2
+ - uid: 1325
+ components:
+ - type: Transform
+ pos: -11.5,-24.5
+ parent: 2
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: -11.5,-23.5
+ parent: 2
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: -10.5,-22.5
+ parent: 2
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: -10.5,-23.5
+ parent: 2
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: -10.5,-24.5
+ parent: 2
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: -107.5,34.5
+ parent: 2
+ - uid: 1848
+ components:
+ - type: Transform
+ pos: -106.5,33.5
+ parent: 2
+ - uid: 1853
+ components:
+ - type: Transform
+ pos: -107.5,33.5
+ parent: 2
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: -22.5,-67.5
+ parent: 2
+ - uid: 1863
+ components:
+ - type: Transform
+ pos: -21.5,-67.5
+ parent: 2
+ - uid: 1903
+ components:
+ - type: Transform
+ pos: -108.5,33.5
+ parent: 2
+ - uid: 1904
+ components:
+ - type: Transform
+ pos: -62.5,-74.5
+ parent: 2
+ - uid: 1922
+ components:
+ - type: Transform
+ pos: -63.5,-72.5
+ parent: 2
+ - uid: 1924
+ components:
+ - type: Transform
+ pos: -22.5,-68.5
+ parent: 2
+ - uid: 1945
+ components:
+ - type: Transform
+ pos: -44.5,-76.5
+ parent: 2
+ - uid: 1952
+ components:
+ - type: Transform
+ pos: -43.5,-75.5
+ parent: 2
+ - uid: 1953
+ components:
+ - type: Transform
+ pos: -44.5,-75.5
+ parent: 2
+ - uid: 1956
+ components:
+ - type: Transform
+ pos: -43.5,-76.5
+ parent: 2
+- proto: AsteroidRockUraniumCrab
+ entities:
+ - uid: 1452
+ components:
+ - type: Transform
+ pos: -117.5,33.5
+ parent: 2
+ - uid: 1897
+ components:
+ - type: Transform
+ pos: -102.5,34.5
+ parent: 2
- proto: ATM
entities:
+ - uid: 1563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-60.5
+ parent: 2
- uid: 2053
components:
- type: Transform
@@ -24325,6 +24385,12 @@ entities:
rot: 3.141592653589793 rad
pos: -100.5,31.5
parent: 2
+ - uid: 8505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-73.5
+ parent: 2
- proto: AtmosFixBlockerMarker
entities:
- uid: 2099
@@ -25228,33 +25294,13 @@ entities:
- type: Transform
pos: -54.22042,-29.585659
parent: 2
-- proto: DoubleBed
+- proto: Bed
entities:
- uid: 2262
components:
- type: Transform
pos: -17.5,-32.5
parent: 2
- - uid: 2263
- components:
- - type: Transform
- pos: -42.5,1.5
- parent: 2
- - uid: 2264
- components:
- - type: Transform
- pos: -42.5,-5.5
- parent: 2
- - uid: 2265
- components:
- - type: Transform
- pos: -57.5,-53.5
- parent: 2
- - uid: 2266
- components:
- - type: Transform
- pos: -71.5,-53.5
- parent: 2
- uid: 2267
components:
- type: Transform
@@ -25275,31 +25321,16 @@ entities:
- type: Transform
pos: -17.5,-31.5
parent: 2
- - uid: 2271
- components:
- - type: Transform
- pos: -75.5,6.5
- parent: 2
- uid: 2272
components:
- type: Transform
pos: -86.5,34.5
parent: 2
- - uid: 2273
- components:
- - type: Transform
- pos: -129.5,-15.5
- parent: 2
- uid: 2274
components:
- type: Transform
pos: -98.5,-26.5
parent: 2
- - uid: 2275
- components:
- - type: Transform
- pos: -76.5,-30.5
- parent: 2
- uid: 2276
components:
- type: Transform
@@ -25310,26 +25341,6 @@ entities:
- type: Transform
pos: -98.5,-22.5
parent: 2
- - uid: 2278
- components:
- - type: Transform
- pos: -132.5,-51.5
- parent: 2
- - uid: 2279
- components:
- - type: Transform
- pos: -36.5,-35.5
- parent: 2
- - uid: 2280
- components:
- - type: Transform
- pos: -70.5,1.5
- parent: 2
- - uid: 2281
- components:
- - type: Transform
- pos: -71.5,-59.5
- parent: 2
- uid: 2282
components:
- type: Transform
@@ -25373,21 +25384,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,-26.5
parent: 2
-- proto: BedsheetCaptain
- entities:
- - uid: 2290
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,1.5
- parent: 2
-- proto: BedsheetCE
- entities:
- - uid: 2291
- components:
- - type: Transform
- pos: -129.5,-15.5
- parent: 2
- proto: BedsheetClown
entities:
- uid: 2292
@@ -25396,13 +25392,6 @@ entities:
rot: 3.141592653589793 rad
pos: -112.5,31.5
parent: 2
-- proto: BedsheetCMO
- entities:
- - uid: 2293
- components:
- - type: Transform
- pos: -36.5,-35.5
- parent: 2
- proto: BedsheetCult
entities:
- uid: 2294
@@ -25411,22 +25400,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -44.5,-51.5
parent: 2
-- proto: BedsheetHOP
- entities:
- - uid: 2295
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-5.5
- parent: 2
-- proto: BedsheetHOS
- entities:
- - uid: 2296
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-30.5
- parent: 2
- proto: BedsheetMedical
entities:
- uid: 2297
@@ -25512,20 +25485,6 @@ entities:
- type: Transform
pos: -51.5,-58.5
parent: 2
-- proto: BedsheetNT
- entities:
- - uid: 2311
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,1.5
- parent: 2
- - uid: 2312
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,6.5
- parent: 2
- proto: BedsheetOrange
entities:
- uid: 2313
@@ -25563,13 +25522,6 @@ entities:
- type: Transform
pos: -86.5,34.5
parent: 2
-- proto: BedsheetRD
- entities:
- - uid: 2319
- components:
- - type: Transform
- pos: -132.5,-51.5
- parent: 2
- proto: BedsheetSpawner
entities:
- uid: 2320
@@ -25587,46 +25539,11 @@ entities:
- type: Transform
pos: -38.5,-52.5
parent: 2
- - uid: 2323
- components:
- - type: Transform
- pos: -71.5,-53.5
- parent: 2
- - uid: 2324
- components:
- - type: Transform
- pos: -57.5,-53.5
- parent: 2
- - uid: 2325
- components:
- - type: Transform
- pos: -71.5,-59.5
- parent: 2
- uid: 2326
components:
- type: Transform
pos: -37.5,-56.5
parent: 2
-- proto: BenchBlueComfy
- entities:
- - uid: 2327
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-53.5
- parent: 2
- - uid: 2328
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-52.5
- parent: 2
- - uid: 2329
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-54.5
- parent: 2
- proto: BenchRedComfy
entities:
- uid: 2330
@@ -25683,7 +25600,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
12559:
- - DoorStatus: Input
+ - - DoorStatus
+ - Input
- uid: 2339
components:
- type: Transform
@@ -25707,7 +25625,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
20654:
- - DoorStatus: Toggle
+ - - DoorStatus
+ - Toggle
- uid: 2343
components:
- type: Transform
@@ -26027,6 +25946,83 @@ entities:
- type: Transform
pos: -67.5,8.5
parent: 2
+ - uid: 27409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-78.5
+ parent: 2
+ - uid: 27410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-78.5
+ parent: 2
+ - uid: 27411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-78.5
+ parent: 2
+ - uid: 27501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-72.5
+ parent: 2
+ - uid: 27502
+ components:
+ - type: Transform
+ pos: -90.5,-73.5
+ parent: 2
+ - uid: 27518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-75.5
+ parent: 2
+ - uid: 27519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-75.5
+ parent: 2
+ - uid: 27520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-77.5
+ parent: 2
+ - uid: 27521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-77.5
+ parent: 2
+ - uid: 27522
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-77.5
+ parent: 2
+ - uid: 27523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-76.5
+ parent: 2
+ - uid: 27524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-76.5
+ parent: 2
+ - uid: 27525
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-76.5
+ parent: 2
- proto: BlockGameArcade
entities:
- uid: 2397
@@ -26065,14 +26061,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: BlueFlowers
- entities:
- - uid: 2403
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.27655,3.541316
- parent: 2
- proto: BlueprintFulton
entities:
- uid: 2404
@@ -26197,6 +26185,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -70.5,-31.5
parent: 2
+ - uid: 27495
+ components:
+ - type: Transform
+ pos: -75.5,6.5
+ parent: 2
- proto: BoozeDispenserMachineCircuitboard
entities:
- uid: 20891
@@ -26430,6 +26423,20 @@ entities:
- type: Transform
pos: -93.49786,-32.33868
parent: 2
+ - uid: 27264
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27297
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BoxingBell
entities:
- uid: 2471
@@ -26497,6 +26504,48 @@ entities:
- type: Transform
pos: -98.48139,-24.459822
parent: 2
+ - uid: 10533
+ components:
+ - type: Transform
+ parent: 10235
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27466
+ components:
+ - type: Transform
+ parent: 27464
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27472
+ components:
+ - type: Transform
+ parent: 27464
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27480
+ components:
+ - type: Transform
+ parent: 27475
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27483
+ components:
+ - type: Transform
+ parent: 27475
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27494
+ components:
+ - type: Transform
+ parent: 27490
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BoxNitrileGloves
entities:
- uid: 2481
@@ -26537,6 +26586,15 @@ entities:
- type: Transform
pos: -84.20864,-23.500015
parent: 2
+- proto: BoxSmokeGrenade
+ entities:
+ - uid: 27299
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BoxSterileMask
entities:
- uid: 2486
@@ -26585,6 +26643,22 @@ entities:
- type: Transform
pos: -46.14342,-24.47311
parent: 2
+- proto: BoxZiptie
+ entities:
+ - uid: 26846
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27263
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BrbSign
entities:
- uid: 2494
@@ -26603,9 +26677,12 @@ entities:
- type: DeviceLinkSource
linkedPorts:
499:
- - Timer: AutoClose
- - Start: Close
- - Timer: Open
+ - - Timer
+ - AutoClose
+ - - Start
+ - Close
+ - - Timer
+ - Open
- uid: 2496
components:
- type: Transform
@@ -26621,9 +26698,12 @@ entities:
- type: DeviceLinkSource
linkedPorts:
500:
- - Timer: AutoClose
- - Start: Close
- - Timer: Open
+ - - Timer
+ - AutoClose
+ - - Start
+ - Close
+ - - Timer
+ - Open
- uid: 2498
components:
- type: Transform
@@ -26642,6 +26722,32 @@ entities:
rot: -1.5707963267948966 rad
pos: -97.5,-35.5
parent: 2
+- proto: BruteAutoInjector
+ entities:
+ - uid: 19906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.3119,-20.392805
+ parent: 2
+ - uid: 19916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.3119,-20.455305
+ parent: 2
+ - uid: 27286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.3119,-20.330305
+ parent: 2
+ - uid: 27301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.3119,-20.59593
+ parent: 2
- proto: Brutepack
entities:
- uid: 2501
@@ -26672,6 +26778,32 @@ entities:
- type: Transform
pos: -50.30467,-19.362368
parent: 2
+- proto: BurnAutoInjector
+ entities:
+ - uid: 19633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.14002,-20.31468
+ parent: 2
+ - uid: 19634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.14002,-20.53343
+ parent: 2
+ - uid: 19636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.14002,-20.424055
+ parent: 2
+ - uid: 27308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.14002,-20.611555
+ parent: 2
- proto: ButtonFrameCaution
entities:
- uid: 2516
@@ -26979,46 +27111,16 @@ entities:
- type: Transform
pos: -110.5,-31.5
parent: 2
- - uid: 2569
- components:
- - type: Transform
- pos: -92.5,-59.5
- parent: 2
- - uid: 2570
- components:
- - type: Transform
- pos: -92.5,-60.5
- parent: 2
- uid: 2571
components:
- type: Transform
pos: -109.5,-30.5
parent: 2
- - uid: 2572
- components:
- - type: Transform
- pos: -92.5,-63.5
- parent: 2
- - uid: 2573
- components:
- - type: Transform
- pos: -92.5,-58.5
- parent: 2
- - uid: 2574
- components:
- - type: Transform
- pos: -92.5,-62.5
- parent: 2
- uid: 2575
components:
- type: Transform
pos: -109.5,-31.5
parent: 2
- - uid: 2576
- components:
- - type: Transform
- pos: -92.5,-61.5
- parent: 2
- uid: 2577
components:
- type: Transform
@@ -27964,11 +28066,6 @@ entities:
- type: Transform
pos: -24.5,-39.5
parent: 2
- - uid: 2766
- components:
- - type: Transform
- pos: -94.5,-63.5
- parent: 2
- uid: 2767
components:
- type: Transform
@@ -40904,51 +41001,11 @@ entities:
- type: Transform
pos: -123.5,26.5
parent: 2
- - uid: 5354
- components:
- - type: Transform
- pos: -94.5,-61.5
- parent: 2
- - uid: 5355
- components:
- - type: Transform
- pos: -92.5,-61.5
- parent: 2
- - uid: 5356
- components:
- - type: Transform
- pos: -93.5,-63.5
- parent: 2
- - uid: 5357
- components:
- - type: Transform
- pos: -95.5,-63.5
- parent: 2
- - uid: 5358
- components:
- - type: Transform
- pos: -93.5,-61.5
- parent: 2
- uid: 5359
components:
- type: Transform
pos: -109.5,-28.5
parent: 2
- - uid: 5360
- components:
- - type: Transform
- pos: -91.5,-63.5
- parent: 2
- - uid: 5361
- components:
- - type: Transform
- pos: -90.5,-63.5
- parent: 2
- - uid: 5362
- components:
- - type: Transform
- pos: -94.5,-60.5
- parent: 2
- uid: 5363
components:
- type: Transform
@@ -40959,15 +41016,450 @@ entities:
- type: Transform
pos: -109.5,-29.5
parent: 2
- - uid: 5365
+ - uid: 27188
components:
- type: Transform
- pos: -92.5,-64.5
+ pos: -86.5,-73.5
parent: 2
- - uid: 5366
+ - uid: 27189
components:
- type: Transform
- pos: -92.5,-65.5
+ pos: -87.5,-73.5
+ parent: 2
+ - uid: 27190
+ components:
+ - type: Transform
+ pos: -88.5,-73.5
+ parent: 2
+ - uid: 27191
+ components:
+ - type: Transform
+ pos: -89.5,-73.5
+ parent: 2
+ - uid: 27192
+ components:
+ - type: Transform
+ pos: -90.5,-73.5
+ parent: 2
+ - uid: 27193
+ components:
+ - type: Transform
+ pos: -90.5,-72.5
+ parent: 2
+ - uid: 27194
+ components:
+ - type: Transform
+ pos: -88.5,-74.5
+ parent: 2
+ - uid: 27195
+ components:
+ - type: Transform
+ pos: -88.5,-75.5
+ parent: 2
+ - uid: 27196
+ components:
+ - type: Transform
+ pos: -88.5,-76.5
+ parent: 2
+ - uid: 27197
+ components:
+ - type: Transform
+ pos: -88.5,-77.5
+ parent: 2
+ - uid: 27198
+ components:
+ - type: Transform
+ pos: -87.5,-76.5
+ parent: 2
+ - uid: 27199
+ components:
+ - type: Transform
+ pos: -86.5,-76.5
+ parent: 2
+ - uid: 27200
+ components:
+ - type: Transform
+ pos: -88.5,-78.5
+ parent: 2
+ - uid: 27201
+ components:
+ - type: Transform
+ pos: -87.5,-78.5
+ parent: 2
+ - uid: 27202
+ components:
+ - type: Transform
+ pos: -86.5,-78.5
+ parent: 2
+ - uid: 27203
+ components:
+ - type: Transform
+ pos: -87.5,-69.5
+ parent: 2
+ - uid: 27204
+ components:
+ - type: Transform
+ pos: -88.5,-69.5
+ parent: 2
+ - uid: 27205
+ components:
+ - type: Transform
+ pos: -89.5,-69.5
+ parent: 2
+ - uid: 27206
+ components:
+ - type: Transform
+ pos: -90.5,-69.5
+ parent: 2
+ - uid: 27207
+ components:
+ - type: Transform
+ pos: -91.5,-69.5
+ parent: 2
+ - uid: 27208
+ components:
+ - type: Transform
+ pos: -92.5,-69.5
+ parent: 2
+ - uid: 27209
+ components:
+ - type: Transform
+ pos: -92.5,-70.5
+ parent: 2
+ - uid: 27210
+ components:
+ - type: Transform
+ pos: -92.5,-71.5
+ parent: 2
+ - uid: 27211
+ components:
+ - type: Transform
+ pos: -92.5,-72.5
+ parent: 2
+ - uid: 27212
+ components:
+ - type: Transform
+ pos: -92.5,-73.5
+ parent: 2
+ - uid: 27213
+ components:
+ - type: Transform
+ pos: -92.5,-74.5
+ parent: 2
+ - uid: 27214
+ components:
+ - type: Transform
+ pos: -93.5,-74.5
+ parent: 2
+ - uid: 27215
+ components:
+ - type: Transform
+ pos: -94.5,-74.5
+ parent: 2
+ - uid: 27216
+ components:
+ - type: Transform
+ pos: -92.5,-68.5
+ parent: 2
+ - uid: 27217
+ components:
+ - type: Transform
+ pos: -93.5,-68.5
+ parent: 2
+ - uid: 27218
+ components:
+ - type: Transform
+ pos: -94.5,-68.5
+ parent: 2
+ - uid: 27219
+ components:
+ - type: Transform
+ pos: -94.5,-67.5
+ parent: 2
+ - uid: 27220
+ components:
+ - type: Transform
+ pos: -94.5,-66.5
+ parent: 2
+ - uid: 27221
+ components:
+ - type: Transform
+ pos: -95.5,-66.5
+ parent: 2
+ - uid: 27222
+ components:
+ - type: Transform
+ pos: -96.5,-66.5
+ parent: 2
+ - uid: 27223
+ components:
+ - type: Transform
+ pos: -97.5,-66.5
+ parent: 2
+ - uid: 27224
+ components:
+ - type: Transform
+ pos: -96.5,-65.5
+ parent: 2
+ - uid: 27225
+ components:
+ - type: Transform
+ pos: -96.5,-64.5
+ parent: 2
+ - uid: 27226
+ components:
+ - type: Transform
+ pos: -96.5,-63.5
+ parent: 2
+ - uid: 27228
+ components:
+ - type: Transform
+ pos: -96.5,-61.5
+ parent: 2
+ - uid: 27229
+ components:
+ - type: Transform
+ pos: -96.5,-60.5
+ parent: 2
+ - uid: 27230
+ components:
+ - type: Transform
+ pos: -97.5,-60.5
+ parent: 2
+ - uid: 27231
+ components:
+ - type: Transform
+ pos: -98.5,-60.5
+ parent: 2
+ - uid: 27234
+ components:
+ - type: Transform
+ pos: -97.5,-72.5
+ parent: 2
+ - uid: 27236
+ components:
+ - type: Transform
+ pos: -96.5,-72.5
+ parent: 2
+ - uid: 27237
+ components:
+ - type: Transform
+ pos: -95.5,-72.5
+ parent: 2
+ - uid: 27238
+ components:
+ - type: Transform
+ pos: -95.5,-71.5
+ parent: 2
+ - uid: 27239
+ components:
+ - type: Transform
+ pos: -95.5,-70.5
+ parent: 2
+ - uid: 27240
+ components:
+ - type: Transform
+ pos: -98.5,-72.5
+ parent: 2
+ - uid: 27241
+ components:
+ - type: Transform
+ pos: -99.5,-72.5
+ parent: 2
+ - uid: 27242
+ components:
+ - type: Transform
+ pos: -100.5,-72.5
+ parent: 2
+ - uid: 27243
+ components:
+ - type: Transform
+ pos: -100.5,-73.5
+ parent: 2
+ - uid: 27244
+ components:
+ - type: Transform
+ pos: -101.5,-73.5
+ parent: 2
+ - uid: 27245
+ components:
+ - type: Transform
+ pos: -102.5,-73.5
+ parent: 2
+ - uid: 27246
+ components:
+ - type: Transform
+ pos: -103.5,-73.5
+ parent: 2
+ - uid: 27247
+ components:
+ - type: Transform
+ pos: -104.5,-73.5
+ parent: 2
+ - uid: 27248
+ components:
+ - type: Transform
+ pos: -104.5,-74.5
+ parent: 2
+ - uid: 27249
+ components:
+ - type: Transform
+ pos: -104.5,-75.5
+ parent: 2
+ - uid: 27250
+ components:
+ - type: Transform
+ pos: -97.5,-71.5
+ parent: 2
+ - uid: 27251
+ components:
+ - type: Transform
+ pos: -97.5,-70.5
+ parent: 2
+ - uid: 27252
+ components:
+ - type: Transform
+ pos: -97.5,-69.5
+ parent: 2
+ - uid: 27253
+ components:
+ - type: Transform
+ pos: -97.5,-68.5
+ parent: 2
+ - uid: 27254
+ components:
+ - type: Transform
+ pos: -98.5,-68.5
+ parent: 2
+ - uid: 27255
+ components:
+ - type: Transform
+ pos: -88.5,-65.5
+ parent: 2
+ - uid: 27256
+ components:
+ - type: Transform
+ pos: -91.5,-65.5
+ parent: 2
+ - uid: 27257
+ components:
+ - type: Transform
+ pos: -90.5,-65.5
+ parent: 2
+ - uid: 27258
+ components:
+ - type: Transform
+ pos: -89.5,-65.5
+ parent: 2
+ - uid: 27259
+ components:
+ - type: Transform
+ pos: -91.5,-64.5
+ parent: 2
+ - uid: 27260
+ components:
+ - type: Transform
+ pos: -91.5,-63.5
+ parent: 2
+ - uid: 27261
+ components:
+ - type: Transform
+ pos: -91.5,-62.5
+ parent: 2
+ - uid: 27262
+ components:
+ - type: Transform
+ pos: -90.5,-63.5
+ parent: 2
+ - uid: 27265
+ components:
+ - type: Transform
+ pos: -92.5,-63.5
+ parent: 2
+ - uid: 27266
+ components:
+ - type: Transform
+ pos: -93.5,-63.5
+ parent: 2
+ - uid: 27267
+ components:
+ - type: Transform
+ pos: -93.5,-62.5
+ parent: 2
+ - uid: 27268
+ components:
+ - type: Transform
+ pos: -94.5,-62.5
+ parent: 2
+ - uid: 27269
+ components:
+ - type: Transform
+ pos: -96.5,-59.5
+ parent: 2
+ - uid: 27270
+ components:
+ - type: Transform
+ pos: -95.5,-59.5
+ parent: 2
+ - uid: 27271
+ components:
+ - type: Transform
+ pos: -96.5,-58.5
+ parent: 2
+ - uid: 27272
+ components:
+ - type: Transform
+ pos: -97.5,-58.5
+ parent: 2
+ - uid: 27273
+ components:
+ - type: Transform
+ pos: -98.5,-58.5
+ parent: 2
+ - uid: 27276
+ components:
+ - type: Transform
+ pos: -88.5,-59.5
+ parent: 2
+ - uid: 27277
+ components:
+ - type: Transform
+ pos: -89.5,-59.5
+ parent: 2
+ - uid: 27278
+ components:
+ - type: Transform
+ pos: -90.5,-59.5
+ parent: 2
+ - uid: 27279
+ components:
+ - type: Transform
+ pos: -91.5,-59.5
+ parent: 2
+ - uid: 27280
+ components:
+ - type: Transform
+ pos: -92.5,-59.5
+ parent: 2
+ - uid: 27281
+ components:
+ - type: Transform
+ pos: -93.5,-59.5
+ parent: 2
+ - uid: 27283
+ components:
+ - type: Transform
+ pos: -90.5,-60.5
+ parent: 2
+ - uid: 27284
+ components:
+ - type: Transform
+ pos: -90.5,-61.5
+ parent: 2
+ - uid: 27585
+ components:
+ - type: Transform
+ pos: -96.5,-62.5
parent: 2
- proto: CableApcStack
entities:
@@ -50140,15 +50632,130 @@ entities:
parent: 2
- proto: CableMV
entities:
- - uid: 7198
+ - uid: 774
components:
- type: Transform
- pos: -93.5,-61.5
+ pos: -88.5,-69.5
parent: 2
- - uid: 7199
+ - uid: 775
components:
- type: Transform
- pos: -94.5,-61.5
+ pos: -87.5,-69.5
+ parent: 2
+ - uid: 806
+ components:
+ - type: Transform
+ pos: -96.5,-66.5
+ parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -90.5,-74.5
+ parent: 2
+ - uid: 907
+ components:
+ - type: Transform
+ pos: -90.5,-69.5
+ parent: 2
+ - uid: 913
+ components:
+ - type: Transform
+ pos: -91.5,-74.5
+ parent: 2
+ - uid: 931
+ components:
+ - type: Transform
+ pos: -92.5,-69.5
+ parent: 2
+ - uid: 933
+ components:
+ - type: Transform
+ pos: -92.5,-73.5
+ parent: 2
+ - uid: 942
+ components:
+ - type: Transform
+ pos: -97.5,-71.5
+ parent: 2
+ - uid: 956
+ components:
+ - type: Transform
+ pos: -92.5,-74.5
+ parent: 2
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: -97.5,-68.5
+ parent: 2
+ - uid: 1428
+ components:
+ - type: Transform
+ pos: -94.5,-67.5
+ parent: 2
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: -92.5,-70.5
+ parent: 2
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: -97.5,-72.5
+ parent: 2
+ - uid: 1518
+ components:
+ - type: Transform
+ pos: -92.5,-72.5
+ parent: 2
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: -94.5,-68.5
+ parent: 2
+ - uid: 1523
+ components:
+ - type: Transform
+ pos: -97.5,-67.5
+ parent: 2
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: -97.5,-66.5
+ parent: 2
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: -94.5,-66.5
+ parent: 2
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: -95.5,-66.5
+ parent: 2
+ - uid: 2012
+ components:
+ - type: Transform
+ pos: -93.5,-68.5
+ parent: 2
+ - uid: 2013
+ components:
+ - type: Transform
+ pos: -97.5,-69.5
+ parent: 2
+ - uid: 2014
+ components:
+ - type: Transform
+ pos: -91.5,-68.5
+ parent: 2
+ - uid: 2015
+ components:
+ - type: Transform
+ pos: -89.5,-69.5
+ parent: 2
+ - uid: 2016
+ components:
+ - type: Transform
+ pos: -92.5,-68.5
parent: 2
- uid: 7200
components:
@@ -56315,16 +56922,6 @@ entities:
- type: Transform
pos: -92.5,-57.5
parent: 2
- - uid: 8433
- components:
- - type: Transform
- pos: -92.5,-58.5
- parent: 2
- - uid: 8434
- components:
- - type: Transform
- pos: -92.5,-59.5
- parent: 2
- uid: 8435
components:
- type: Transform
@@ -56670,20 +57267,175 @@ entities:
- type: Transform
pos: -122.5,27.5
parent: 2
- - uid: 8504
+ - uid: 8763
+ components:
+ - type: Transform
+ pos: -90.5,-67.5
+ parent: 2
+ - uid: 8764
+ components:
+ - type: Transform
+ pos: -90.5,-63.5
+ parent: 2
+ - uid: 9351
+ components:
+ - type: Transform
+ pos: -90.5,-64.5
+ parent: 2
+ - uid: 9556
+ components:
+ - type: Transform
+ pos: -89.5,-65.5
+ parent: 2
+ - uid: 10231
+ components:
+ - type: Transform
+ pos: -88.5,-65.5
+ parent: 2
+ - uid: 18578
+ components:
+ - type: Transform
+ pos: -89.5,-66.5
+ parent: 2
+ - uid: 18795
+ components:
+ - type: Transform
+ pos: -92.5,-58.5
+ parent: 2
+ - uid: 18886
+ components:
+ - type: Transform
+ pos: -90.5,-65.5
+ parent: 2
+ - uid: 18895
+ components:
+ - type: Transform
+ pos: -90.5,-66.5
+ parent: 2
+ - uid: 19752
+ components:
+ - type: Transform
+ pos: -90.5,-59.5
+ parent: 2
+ - uid: 21080
+ components:
+ - type: Transform
+ pos: -90.5,-60.5
+ parent: 2
+ - uid: 21953
+ components:
+ - type: Transform
+ pos: -91.5,-66.5
+ parent: 2
+ - uid: 21954
+ components:
+ - type: Transform
+ pos: -90.5,-68.5
+ parent: 2
+ - uid: 22526
+ components:
+ - type: Transform
+ pos: -91.5,-58.5
+ parent: 2
+ - uid: 22616
+ components:
+ - type: Transform
+ pos: -90.5,-58.5
+ parent: 2
+ - uid: 23200
+ components:
+ - type: Transform
+ pos: -97.5,-70.5
+ parent: 2
+ - uid: 23619
+ components:
+ - type: Transform
+ pos: -92.5,-71.5
+ parent: 2
+ - uid: 25767
+ components:
+ - type: Transform
+ pos: -90.5,-61.5
+ parent: 2
+ - uid: 25768
+ components:
+ - type: Transform
+ pos: -90.5,-62.5
+ parent: 2
+ - uid: 27183
+ components:
+ - type: Transform
+ pos: -89.5,-74.5
+ parent: 2
+ - uid: 27184
+ components:
+ - type: Transform
+ pos: -88.5,-74.5
+ parent: 2
+ - uid: 27185
+ components:
+ - type: Transform
+ pos: -87.5,-74.5
+ parent: 2
+ - uid: 27186
+ components:
+ - type: Transform
+ pos: -87.5,-73.5
+ parent: 2
+ - uid: 27187
+ components:
+ - type: Transform
+ pos: -86.5,-73.5
+ parent: 2
+ - uid: 27233
+ components:
+ - type: Transform
+ pos: -89.5,-59.5
+ parent: 2
+ - uid: 27235
+ components:
+ - type: Transform
+ pos: -88.5,-59.5
+ parent: 2
+ - uid: 27578
+ components:
+ - type: Transform
+ pos: -92.5,-59.5
+ parent: 2
+ - uid: 27579
components:
- type: Transform
pos: -92.5,-60.5
parent: 2
- - uid: 8505
+ - uid: 27580
+ components:
+ - type: Transform
+ pos: -93.5,-60.5
+ parent: 2
+ - uid: 27581
components:
- type: Transform
pos: -94.5,-60.5
parent: 2
- - uid: 8506
+ - uid: 27582
components:
- type: Transform
- pos: -92.5,-61.5
+ pos: -95.5,-60.5
+ parent: 2
+ - uid: 27583
+ components:
+ - type: Transform
+ pos: -96.5,-60.5
+ parent: 2
+ - uid: 27584
+ components:
+ - type: Transform
+ pos: -96.5,-62.5
+ parent: 2
+ - uid: 27586
+ components:
+ - type: Transform
+ pos: -96.5,-61.5
parent: 2
- proto: CableMVStack
entities:
@@ -56866,6 +57618,13 @@ entities:
- type: Transform
pos: -129.5,7.5
parent: 2
+- proto: CargoMailTeleporter
+ entities:
+ - uid: 1397
+ components:
+ - type: Transform
+ pos: -99.5,-60.5
+ parent: 2
- proto: CargoPallet
entities:
- uid: 8537
@@ -56873,27 +57632,6 @@ entities:
- type: Transform
pos: -97.5,35.5
parent: 2
- - uid: 8538
- components:
- - type: Transform
- pos: -51.5,-18.5
- parent: 2
- - uid: 8539
- components:
- - type: Transform
- pos: -113.5,-37.5
- parent: 2
- - uid: 8540
- components:
- - type: Transform
- pos: -115.5,-37.5
- parent: 2
- - uid: 8541
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-46.5
- parent: 2
- proto: CargoPalletBuy
entities:
- uid: 8542
@@ -56977,6 +57715,38 @@ entities:
- type: Transform
pos: -116.484184,-31.259472
parent: 2
+- proto: CargoTelepad
+ entities:
+ - uid: 2323
+ components:
+ - type: Transform
+ pos: -115.5,-37.5
+ parent: 2
+ - uid: 2324
+ components:
+ - type: Transform
+ pos: -113.5,-37.5
+ parent: 2
+ - uid: 8538
+ components:
+ - type: Transform
+ pos: -85.5,-25.5
+ parent: 2
+ - uid: 8539
+ components:
+ - type: Transform
+ pos: -17.5,-46.5
+ parent: 2
+ - uid: 8541
+ components:
+ - type: Transform
+ pos: -51.5,-18.5
+ parent: 2
+ - uid: 10647
+ components:
+ - type: Transform
+ pos: -107.5,-17.5
+ parent: 2
- proto: Carpet
entities:
- uid: 8555
@@ -57035,12 +57805,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -82.5,-32.5
parent: 2
- - uid: 8565
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-30.5
- parent: 2
- uid: 8566
components:
- type: Transform
@@ -57059,24 +57823,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -76.5,-31.5
parent: 2
- - uid: 8569
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -78.5,-30.5
- parent: 2
- - uid: 8570
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-30.5
- parent: 2
- - uid: 8571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-29.5
- parent: 2
- uid: 8572
components:
- type: Transform
@@ -57122,14 +57868,8 @@ entities:
- uid: 8579
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -78.5,-29.5
- parent: 2
- - uid: 8580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,-32.5
parent: 2
- uid: 8581
components:
@@ -57270,7 +58010,8 @@ entities:
- uid: 8605
components:
- type: Transform
- pos: -78.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,-32.5
parent: 2
- uid: 8606
components:
@@ -58058,6 +58799,76 @@ entities:
rot: -1.5707963267948966 rad
pos: -75.5,6.5
parent: 2
+ - uid: 27091
+ components:
+ - type: Transform
+ pos: -58.5,-11.5
+ parent: 2
+ - uid: 27092
+ components:
+ - type: Transform
+ pos: -58.5,-10.5
+ parent: 2
+ - uid: 27093
+ components:
+ - type: Transform
+ pos: -59.5,-11.5
+ parent: 2
+ - uid: 27094
+ components:
+ - type: Transform
+ pos: -59.5,-10.5
+ parent: 2
+ - uid: 27095
+ components:
+ - type: Transform
+ pos: -63.5,-11.5
+ parent: 2
+ - uid: 27096
+ components:
+ - type: Transform
+ pos: -63.5,-10.5
+ parent: 2
+ - uid: 27175
+ components:
+ - type: Transform
+ pos: -64.5,-11.5
+ parent: 2
+ - uid: 27176
+ components:
+ - type: Transform
+ pos: -64.5,-10.5
+ parent: 2
+ - uid: 27177
+ components:
+ - type: Transform
+ pos: -62.5,-9.5
+ parent: 2
+ - uid: 27178
+ components:
+ - type: Transform
+ pos: -61.5,-9.5
+ parent: 2
+ - uid: 27179
+ components:
+ - type: Transform
+ pos: -60.5,-9.5
+ parent: 2
+ - uid: 27180
+ components:
+ - type: Transform
+ pos: -61.5,-12.5
+ parent: 2
+ - uid: 27181
+ components:
+ - type: Transform
+ pos: -62.5,-12.5
+ parent: 2
+ - uid: 27182
+ components:
+ - type: Transform
+ pos: -60.5,-12.5
+ parent: 2
- proto: CarpetChapel
entities:
- uid: 8744
@@ -58108,18 +58919,6 @@ entities:
parent: 2
- proto: CarpetGreen
entities:
- - uid: 8752
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-62.5
- parent: 2
- - uid: 8753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-62.5
- parent: 2
- uid: 8754
components:
- type: Transform
@@ -58174,18 +58973,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -71.5,5.5
parent: 2
- - uid: 8763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-63.5
- parent: 2
- - uid: 8764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-63.5
- parent: 2
- proto: CarpetOrange
entities:
- uid: 8765
@@ -58426,6 +59213,32 @@ entities:
- type: Transform
pos: -133.5,-47.5
parent: 2
+- proto: CarpetSBlue
+ entities:
+ - uid: 1619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -88.5,-73.5
+ parent: 2
+ - uid: 1751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -88.5,-72.5
+ parent: 2
+ - uid: 1865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-72.5
+ parent: 2
+ - uid: 1909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-73.5
+ parent: 2
- proto: CartridgeMagnumAP
entities:
- uid: 8809
@@ -58450,6 +59263,60 @@ entities:
parent: 2
- proto: Catwalk
entities:
+ - uid: 1480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-75.5
+ parent: 2
+ - uid: 1585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-71.5
+ parent: 2
+ - uid: 1957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-74.5
+ parent: 2
+ - uid: 2019
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-74.5
+ parent: 2
+ - uid: 2046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-76.5
+ parent: 2
+ - uid: 2271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-69.5
+ parent: 2
+ - uid: 2311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-70.5
+ parent: 2
+ - uid: 2312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-75.5
+ parent: 2
+ - uid: 2569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-76.5
+ parent: 2
- uid: 8812
components:
- type: Transform
@@ -61499,11 +62366,6 @@ entities:
rot: 3.141592653589793 rad
pos: -130.5,-36.5
parent: 2
- - uid: 9351
- components:
- - type: Transform
- pos: -92.5,-58.5
- parent: 2
- uid: 9352
components:
- type: Transform
@@ -62581,11 +63443,6 @@ entities:
- type: Transform
pos: -42.5,-60.5
parent: 2
- - uid: 9556
- components:
- - type: Transform
- pos: -92.5,-57.5
- parent: 2
- uid: 9557
components:
- type: Transform
@@ -64883,6 +65740,48 @@ entities:
- type: Transform
pos: -91.5,17.5
parent: 2
+ - uid: 12520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-45.5
+ parent: 2
+ - uid: 20194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-73.5
+ parent: 2
+ - uid: 21955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-73.5
+ parent: 2
+ - uid: 27312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-57.5
+ parent: 2
+ - uid: 27438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-70.5
+ parent: 2
+ - uid: 27439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-69.5
+ parent: 2
+ - uid: 27451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-71.5
+ parent: 2
- proto: Chair
entities:
- uid: 9973
@@ -65186,24 +66085,6 @@ entities:
rot: 3.141592653589793 rad
pos: -147.5,-44.5
parent: 2
- - uid: 10025
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-32.5
- parent: 2
- - uid: 10026
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-32.5
- parent: 2
- - uid: 10027
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-32.5
- parent: 2
- uid: 10028
components:
- type: Transform
@@ -65239,21 +66120,6 @@ entities:
- type: Transform
pos: -147.5,-46.5
parent: 2
- - uid: 10034
- components:
- - type: Transform
- pos: -62.5,-30.5
- parent: 2
- - uid: 10035
- components:
- - type: Transform
- pos: -60.5,-30.5
- parent: 2
- - uid: 10036
- components:
- - type: Transform
- pos: -61.5,-30.5
- parent: 2
- uid: 10037
components:
- type: Transform
@@ -66161,12 +67027,6 @@ entities:
rot: 3.141592653589793 rad
pos: -43.5,-67.5
parent: 2
- - uid: 10196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-30.5
- parent: 2
- uid: 10197
components:
- type: Transform
@@ -66370,17 +67230,24 @@ entities:
rot: 3.141592653589793 rad
pos: -99.527626,-35.398834
parent: 2
- - uid: 10231
- components:
- - type: Transform
- pos: -90.504135,-62.51511
- parent: 2
- uid: 10232
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -38.524,-21.410423
parent: 2
+ - uid: 25511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.36276,-63.894054
+ parent: 2
+ - uid: 27317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.569664,-72.95758
+ parent: 2
- proto: ChairOfficeLight
entities:
- uid: 10233
@@ -66395,12 +67262,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -55.5,5.5
parent: 2
- - uid: 10235
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.33717,-63.283794
- parent: 2
- uid: 10236
components:
- type: Transform
@@ -66431,12 +67292,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -121.46625,-49.435917
parent: 2
- - uid: 10241
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.38405,-62.502544
- parent: 2
- uid: 10242
components:
- type: Transform
@@ -67475,6 +68330,17 @@ entities:
- type: Transform
pos: -46.536045,-60.39634
parent: 2
+- proto: ClothingBackpackSatchelLeather
+ entities:
+ - uid: 10428
+ components:
+ - type: Transform
+ parent: 10196
+ - type: Clothing
+ inSlotFlag: BACK
+ inSlot: back
+ - type: Physics
+ canCollide: False
- proto: ClothingBackpackWaterTank
entities:
- uid: 10419
@@ -67567,14 +68433,6 @@ entities:
- type: Transform
pos: -134.56674,-43.3662
parent: 2
-- proto: ClothingEyesGlassesOutlawGlasses
- entities:
- - uid: 10428
- components:
- - type: Transform
- parent: 10427
- - type: Physics
- canCollide: False
- proto: ClothingEyesGlassesSunglasses
entities:
- uid: 10431
@@ -67582,6 +68440,24 @@ entities:
- type: Transform
pos: -97.522255,-43.642056
parent: 2
+ - uid: 10452
+ components:
+ - type: Transform
+ parent: 10432
+ - type: Clothing
+ inSlotFlag: EYES
+ inSlot: eyes
+ - type: Physics
+ canCollide: False
+ - uid: 10499
+ components:
+ - type: Transform
+ parent: 10439
+ - type: Clothing
+ inSlotFlag: EYES
+ inSlot: eyes
+ - type: Physics
+ canCollide: False
- proto: ClothingEyesGlassesThermalSec
entities:
- uid: 10486
@@ -67650,7 +68526,10 @@ entities:
- uid: 10453
components:
- type: Transform
- parent: 10452
+ parent: 10196
+ - type: Clothing
+ inSlotFlag: HEAD
+ inSlot: head
- type: Physics
canCollide: False
- proto: ClothingHeadHatCapNtrep
@@ -67780,12 +68659,6 @@ entities:
parent: 2
- proto: ClothingHeadHatCowboyWhite
entities:
- - uid: 10429
- components:
- - type: Transform
- parent: 10427
- - type: Physics
- canCollide: False
- uid: 10474
components:
- type: Transform
@@ -67901,7 +68774,10 @@ entities:
- uid: 10454
components:
- type: Transform
- parent: 10452
+ parent: 10196
+ - type: Clothing
+ inSlotFlag: MASK
+ inSlot: mask
- type: DiseaseImmuneClothing
isActive: True
- type: Physics
@@ -68046,7 +68922,10 @@ entities:
- uid: 10455
components:
- type: Transform
- parent: 10452
+ parent: 10196
+ - type: Clothing
+ inSlotFlag: OUTERCLOTHING
+ inSlot: outerClothing
- type: Physics
canCollide: False
- proto: ClothingOuterCoatPirate
@@ -68082,13 +68961,6 @@ entities:
- type: Transform
pos: -87.230804,35.25655
parent: 2
-- proto: ClothingShoesBootsCowboyFancyFilled
- entities:
- - uid: 10499
- components:
- - type: Transform
- pos: -81.237274,-31.83527
- parent: 2
- proto: ClothingShoesBootsMag
entities:
- uid: 10500
@@ -68111,6 +68983,15 @@ entities:
- type: Transform
pos: -35.366695,-5.9924498
parent: 2
+- proto: ClothingShoesBootsMagCombat
+ entities:
+ - uid: 19685
+ components:
+ - type: Transform
+ parent: 19637
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ClothingShoesFlippers
entities:
- uid: 10504
@@ -68177,21 +69058,26 @@ entities:
inSlot: jumpsuit
- type: Physics
canCollide: False
-- proto: ClothingUniformJumpsuitHoSBlue
+- proto: ClothingUniformJumpsuitGalaxyBlue
entities:
- - uid: 10430
+ - uid: 10574
components:
- type: Transform
- parent: 10427
+ parent: 10235
- type: Physics
canCollide: False
-- proto: ClothingUniformJumpsuitJournalist
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitHoSBlue
entities:
- - uid: 10507
+ - uid: 10427
components:
- type: Transform
- pos: -95.68522,-61.460827
- parent: 2
+ parent: 10196
+ - type: Clothing
+ inSlotFlag: INNERCLOTHING
+ inSlot: jumpsuit
+ - type: Physics
+ canCollide: False
- proto: ClothingUniformJumpsuitNtrepFormal
entities:
- uid: 2449
@@ -68201,13 +69087,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitReporter
- entities:
- - uid: 10508
- components:
- - type: Transform
- pos: -95.542725,-61.46709
- parent: 2
- proto: Cobweb1
entities:
- uid: 10509
@@ -68241,21 +69120,22 @@ entities:
parent: 2
- proto: ComfyBrownChair
entities:
+ - uid: 1528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,3.5
+ parent: 2
- uid: 10514
components:
- type: Transform
pos: -50.5,1.5
parent: 2
- - uid: 10515
+ - uid: 27485
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -90.5,-65.5
- parent: 2
- - uid: 10516
- components:
- - type: Transform
- pos: -91.5,-64.5
+ pos: -75.5,3.5
parent: 2
- proto: ComfyChair
entities:
@@ -68352,13 +69232,6 @@ entities:
- type: Transform
pos: -116.53106,-32.66572
parent: 2
-- proto: ComplexXenoArtifactItem
- entities:
- - uid: 10533
- components:
- - type: Transform
- pos: -127.3249,-45.680656
- parent: 2
- proto: ComputeCargoSalaryConsole
entities:
- uid: 10534
@@ -68415,7 +69288,8 @@ entities:
range: 7
linkedPorts:
19618:
- - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+ - - ArtifactAnalyzerSender
+ - ArtifactAnalyzerReceiver
- uid: 10542
components:
- type: Transform
@@ -68425,7 +69299,8 @@ entities:
range: 7
linkedPorts:
19619:
- - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+ - - ArtifactAnalyzerSender
+ - ArtifactAnalyzerReceiver
- proto: ComputerAtmosMonitoring
entities:
- uid: 10543
@@ -68556,6 +69431,71 @@ entities:
- type: Transform
pos: -57.5,8.5
parent: 2
+- proto: ComputerCargoOrdersEngineering
+ entities:
+ - uid: 10622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-16.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10647:
+ - - OrderSender
+ - OrderReceiver
+- proto: ComputerCargoOrdersMedical
+ entities:
+ - uid: 2325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-46.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8539:
+ - - OrderSender
+ - OrderReceiver
+- proto: ComputerCargoOrdersScience
+ entities:
+ - uid: 8540
+ components:
+ - type: Transform
+ pos: -114.5,-37.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2324:
+ - - OrderSender
+ - OrderReceiver
+ 2323:
+ - - OrderSender
+ - OrderReceiver
+- proto: ComputerCargoOrdersSecurity
+ entities:
+ - uid: 10566
+ components:
+ - type: Transform
+ pos: -86.5,-25.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8538:
+ - - OrderSender
+ - OrderReceiver
+- proto: ComputerCargoOrdersService
+ entities:
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: -52.5,-18.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8541:
+ - - OrderSender
+ - OrderReceiver
- proto: ComputerComms
entities:
- uid: 10564
@@ -68569,13 +69509,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -53.5,1.5
parent: 2
-- proto: ComputerContrabandSale
- entities:
- - uid: 10566
- components:
- - type: Transform
- pos: -86.5,-25.5
- parent: 2
- proto: ComputerCrewMonitoring
entities:
- uid: 10567
@@ -68618,17 +69551,23 @@ entities:
- type: Transform
pos: -122.5,-76.5
parent: 2
- - uid: 10574
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,3.5
- parent: 2
- uid: 10575
components:
- type: Transform
pos: -55.5,7.5
parent: 2
+ - uid: 10870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-70.5
+ parent: 2
+ - uid: 27559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-64.5
+ parent: 2
- proto: ComputerCriminalRecords
entities:
- uid: 10576
@@ -68671,6 +69610,11 @@ entities:
- type: Transform
pos: -67.5,7.5
parent: 2
+ - uid: 27497
+ components:
+ - type: Transform
+ pos: -91.5,-67.5
+ parent: 2
- proto: ComputerFineRecords
entities:
- uid: 10583
@@ -68693,6 +69637,14 @@ entities:
rot: 1.5707963267948966 rad
pos: -20.5,-25.5
parent: 2
+- proto: ComputerFundingAllocation
+ entities:
+ - uid: 10621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-2.5
+ parent: 2
- proto: ComputerId
entities:
- uid: 10586
@@ -68712,14 +69664,6 @@ entities:
- type: Transform
pos: -62.5,8.5
parent: 2
-- proto: ComputerMassMedia
- entities:
- - uid: 10589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,-63.5
- parent: 2
- proto: ComputerMedicalRecords
entities:
- uid: 10590
@@ -68744,14 +69688,6 @@ entities:
rot: 3.141592653589793 rad
pos: -37.5,-42.5
parent: 2
-- proto: ComputerMedicalSaleConsole
- entities:
- - uid: 10594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-46.5
- parent: 2
- proto: ComputerMiningSaleConsole
entities:
- uid: 10595
@@ -68910,20 +69846,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -96.5,33.5
parent: 2
-- proto: ComputerScienceSaleConsole
- entities:
- - uid: 10621
- components:
- - type: Transform
- pos: -114.5,-37.5
- parent: 2
-- proto: ComputerServiceSaleConsole
- entities:
- - uid: 10622
- components:
- - type: Transform
- pos: -52.5,-18.5
- parent: 2
- proto: ComputerSolarControl
entities:
- uid: 10623
@@ -68992,24 +69914,21 @@ entities:
rot: 1.5707963267948966 rad
pos: -92.5,-23.5
parent: 2
- - uid: 10634
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,3.5
- parent: 2
- uid: 10635
components:
- type: Transform
pos: -66.5,7.5
parent: 2
-- proto: ComputerSurveillanceWirelessCameraMonitor
- entities:
- - uid: 10636
+ - uid: 27556
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-63.5
+ pos: -90.5,-67.5
+ parent: 2
+ - uid: 27558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-63.5
parent: 2
- proto: ComputerTelevision
entities:
@@ -69071,15 +69990,14 @@ entities:
- type: Transform
pos: -61.5,8.5
parent: 2
-- proto: ContrabandPalletSell
- entities:
- - uid: 10647
- components:
- - type: Transform
- pos: -85.5,-25.5
- parent: 2
- proto: ConveyorBelt
entities:
+ - uid: 1544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-60.5
+ parent: 2
- uid: 10648
components:
- type: Transform
@@ -69514,6 +70432,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -99.5,20.5
parent: 2
+ - uid: 17614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-59.5
+ parent: 2
+ - uid: 20154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-58.5
+ parent: 2
- proto: CorporateCircuitBoard
entities:
- uid: 10721
@@ -69521,6 +70451,117 @@ entities:
- type: Transform
pos: -118.4333,-70.38316
parent: 2
+- proto: CorpSofaLeft
+ entities:
+ - uid: 10026
+ components:
+ - type: Transform
+ pos: -62.5,-30.5
+ parent: 2
+ - uid: 10027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-32.5
+ parent: 2
+ - uid: 22707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-54.5
+ parent: 2
+ - uid: 23356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -67.5,-56.5
+ parent: 2
+ - uid: 23365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-54.5
+ parent: 2
+ - uid: 27440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-63.5
+ parent: 2
+- proto: CorpSofaMiddle
+ entities:
+ - uid: 1618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-64.5
+ parent: 2
+ - uid: 10035
+ components:
+ - type: Transform
+ pos: -61.5,-30.5
+ parent: 2
+ - uid: 10036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,-32.5
+ parent: 2
+ - uid: 23368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -67.5,-55.5
+ parent: 2
+ - uid: 24132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-53.5
+ parent: 2
+ - uid: 24133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-55.5
+ parent: 2
+- proto: CorpSofaRight
+ entities:
+ - uid: 2327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-56.5
+ parent: 2
+ - uid: 2328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -67.5,-54.5
+ parent: 2
+ - uid: 2329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-52.5
+ parent: 2
+ - uid: 10025
+ components:
+ - type: Transform
+ pos: -60.5,-30.5
+ parent: 2
+ - uid: 10034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-32.5
+ parent: 2
+ - uid: 27562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-65.5
+ parent: 2
- proto: Cowbar
entities:
- uid: 10722
@@ -69600,6 +70641,51 @@ entities:
showEnts: False
occludes: True
ent: 10731
+- proto: CrateCommandSecure
+ entities:
+ - uid: 26175
+ components:
+ - type: Transform
+ pos: -96.5,-74.5
+ parent: 2
+ - type: Lock
+ locked: False
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27293
+ - 27292
+ - 27291
+ - 27290
+ - 27288
+ - 27287
+ - 27285
+ - 27282
+ - 27275
+ - 27274
+ - 27264
+ - 27263
+ - 27227
+ - 27042
+ - 26900
+ - 26883
+ - 26846
+ - 26184
+ - 26178
+ - 26177
+ - 27294
+ - 27295
+ - 27296
+ - 27297
+ - 27298
+ - 27299
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateContrabandStorageSecure
entities:
- uid: 10732
@@ -69848,6 +70934,11 @@ entities:
- type: Transform
pos: -91.5,18.5
parent: 2
+ - uid: 21567
+ components:
+ - type: Transform
+ pos: -95.5,-74.5
+ parent: 2
- proto: CrateFreezer
entities:
- uid: 10768
@@ -70167,6 +71258,43 @@ entities:
- type: Transform
pos: -47.5,-77.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrateSecurityBiosuit
+ entities:
+ - uid: 17533
+ components:
+ - type: Transform
+ pos: -76.5,-29.5
+ parent: 2
+ - uid: 22631
+ components:
+ - type: Transform
+ pos: -77.5,-29.5
+ parent: 2
+- proto: CrateSecurityGlovesCombat
+ entities:
+ - uid: 26888
+ components:
+ - type: Transform
+ pos: -80.5,-21.5
+ parent: 2
- proto: CrateSecurityTrackingMindshieldImplants
entities:
- uid: 10802
@@ -70181,6 +71309,13 @@ entities:
- type: Transform
pos: -14.5,-2.5
parent: 2
+- proto: CrateStoneGrave
+ entities:
+ - uid: 25512
+ components:
+ - type: Transform
+ pos: -85.5,-80.5
+ parent: 2
- proto: CrateSurgery
entities:
- uid: 10804
@@ -70386,6 +71521,28 @@ entities:
- type: Transform
pos: -64.5,0.5
parent: 2
+ - uid: 23402
+ components:
+ - type: Transform
+ pos: -95.5,-72.5
+ parent: 2
+ - uid: 23429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-70.5
+ parent: 2
+ - uid: 24101
+ components:
+ - type: Transform
+ pos: -96.5,-72.5
+ parent: 2
+ - uid: 27486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-71.5
+ parent: 2
- proto: CurtainsBlueOpen
entities:
- uid: 10837
@@ -70475,14 +71632,8 @@ entities:
pos: -20.5,-16.5
parent: 2
- type: Door
- secondsUntilStateChange: -21829.812
+ secondsUntilStateChange: -41579.758
state: Closing
- - uid: 10853
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,5.5
- parent: 2
- proto: CurtainsGreen
entities:
- uid: 10854
@@ -70491,6 +71642,18 @@ entities:
rot: 3.141592653589793 rad
pos: -70.5,3.5
parent: 2
+ - uid: 22627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,5.5
+ parent: 2
+ - uid: 27316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,4.5
+ parent: 2
- proto: CurtainsGreenOpen
entities:
- uid: 10855
@@ -70624,13 +71787,11 @@ entities:
location: Бар
- proto: DefaultStationBeaconBlueShield
entities:
- - uid: 10870
+ - uid: 1139
components:
- type: Transform
- pos: -76.5,5.5
+ pos: -98.5,-70.5
parent: 2
- - type: WarpPoint
- location: Комната ОСЩ
- proto: DefaultStationBeaconBotany
entities:
- uid: 10871
@@ -71034,6 +72195,11 @@ entities:
parent: 2
- type: WarpPoint
location: Комната утилизаторов
+ - uid: 27454
+ components:
+ - type: Transform
+ pos: -98.5,-72.5
+ parent: 2
- proto: DefaultStationBeaconScience
entities:
- uid: 10916
@@ -71061,15 +72227,6 @@ entities:
parent: 2
- type: WarpPoint
location: КПП СБ Прибытие
-- proto: DefaultStationBeaconService
- entities:
- - uid: 10919
- components:
- - type: Transform
- pos: -92.5,-61.5
- parent: 2
- - type: WarpPoint
- location: Репортёрская
- proto: DefaultStationBeaconSolars
entities:
- uid: 10920
@@ -71235,10 +72392,15 @@ entities:
parent: 2
- proto: DeployableBarrier
entities:
- - uid: 10942
+ - uid: 1400
components:
- type: Transform
- pos: -77.5,-27.5
+ pos: -92.5,-76.5
+ parent: 2
+ - uid: 2403
+ components:
+ - type: Transform
+ pos: -94.5,-70.5
parent: 2
- uid: 10943
components:
@@ -71265,6 +72427,36 @@ entities:
- type: Transform
pos: -24.5,1.5
parent: 2
+ - uid: 19628
+ components:
+ - type: Transform
+ pos: -97.5,-64.5
+ parent: 2
+ - uid: 20042
+ components:
+ - type: Transform
+ pos: -94.5,-71.5
+ parent: 2
+ - uid: 22690
+ components:
+ - type: Transform
+ pos: -91.5,-75.5
+ parent: 2
+ - uid: 25516
+ components:
+ - type: Transform
+ pos: -96.5,-63.5
+ parent: 2
+ - uid: 27304
+ components:
+ - type: Transform
+ pos: -75.5,-27.5
+ parent: 2
+ - uid: 27315
+ components:
+ - type: Transform
+ pos: -97.5,-63.5
+ parent: 2
- proto: DeskBell
entities:
- uid: 10948
@@ -71286,6 +72478,29 @@ entities:
parent: 2
- proto: DisposalBend
entities:
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: -94.5,-66.5
+ parent: 2
+ - uid: 2010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-66.5
+ parent: 2
+ - uid: 2034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-68.5
+ parent: 2
+ - uid: 2038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-68.5
+ parent: 2
- uid: 10951
components:
- type: Transform
@@ -72050,6 +73265,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -112.5,-14.5
parent: 2
+ - uid: 17824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-64.5
+ parent: 2
+ - uid: 19990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-69.5
+ parent: 2
+ - uid: 26183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-64.5
+ parent: 2
- proto: DisposalJunction
entities:
- uid: 11084
@@ -72175,8 +73408,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -105.5,25.5
parent: 2
+ - uid: 17086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-65.5
+ parent: 2
- proto: DisposalJunctionFlipped
entities:
+ - uid: 2043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-68.5
+ parent: 2
- uid: 11105
components:
- type: Transform
@@ -72353,8 +73598,50 @@ entities:
rot: 3.141592653589793 rad
pos: -75.5,-39.5
parent: 2
+ - uid: 12485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-56.5
+ parent: 2
- proto: DisposalPipe
entities:
+ - uid: 1390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-67.5
+ parent: 2
+ - uid: 1399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-68.5
+ parent: 2
+ - uid: 1912
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-68.5
+ parent: 2
+ - uid: 2023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-69.5
+ parent: 2
+ - uid: 2027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-62.5
+ parent: 2
+ - uid: 2031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-63.5
+ parent: 2
- uid: 11135
components:
- type: Transform
@@ -74924,12 +76211,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -103.5,-56.5
parent: 2
- - uid: 11580
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-56.5
- parent: 2
- uid: 11581
components:
- type: Transform
@@ -79355,6 +80636,82 @@ entities:
rot: -1.5707963267948966 rad
pos: -103.5,20.5
parent: 2
+ - uid: 20057
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-64.5
+ parent: 2
+ - uid: 25747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-69.5
+ parent: 2
+ - uid: 25752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-66.5
+ parent: 2
+ - uid: 25886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-58.5
+ parent: 2
+ - uid: 25888
+ components:
+ - type: Transform
+ pos: -94.5,-67.5
+ parent: 2
+ - uid: 26173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-69.5
+ parent: 2
+ - uid: 26179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-66.5
+ parent: 2
+ - uid: 26180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-61.5
+ parent: 2
+ - uid: 26205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-60.5
+ parent: 2
+ - uid: 26946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-59.5
+ parent: 2
+ - uid: 26947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-67.5
+ parent: 2
+ - uid: 27311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-57.5
+ parent: 2
+ - uid: 27322
+ components:
+ - type: Transform
+ pos: -92.5,-66.5
+ parent: 2
- proto: DisposalPipeBroken
entities:
- uid: 12356
@@ -79493,6 +80850,12 @@ entities:
tag: Nerd
- proto: DisposalTrunk
entities:
+ - uid: 2030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-68.5
+ parent: 2
- uid: 12371
components:
- type: Transform
@@ -79844,8 +81207,30 @@ entities:
rot: -1.5707963267948966 rad
pos: -102.5,20.5
parent: 2
+ - uid: 25769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-69.5
+ parent: 2
+ - uid: 25890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-65.5
+ parent: 2
- proto: DisposalUnit
entities:
+ - uid: 2011
+ components:
+ - type: Transform
+ pos: -88.5,-69.5
+ parent: 2
+ - uid: 2020
+ components:
+ - type: Transform
+ pos: -99.5,-68.5
+ parent: 2
- uid: 12432
components:
- type: Transform
@@ -80061,6 +81446,11 @@ entities:
- type: Transform
pos: -64.5,2.5
parent: 2
+ - uid: 26168
+ components:
+ - type: Transform
+ pos: -91.5,-65.5
+ parent: 2
- proto: DisposalYJunction
entities:
- uid: 12475
@@ -80106,8 +81496,6 @@ entities:
- type: Transform
pos: -46.5,-9.5
parent: 2
- - type: HealOnBuckle
- sleepAction: 6
- type: ActionsContainer
- type: ContainerContainer
containers:
@@ -80134,16 +81522,16 @@ entities:
- type: Transform
pos: -32.5,-42.5
parent: 2
- - uid: 12485
- components:
- - type: Transform
- pos: -80.5,-35.5
- parent: 2
- uid: 12486
components:
- type: Transform
pos: -92.5,-20.5
parent: 2
+ - uid: 27535
+ components:
+ - type: Transform
+ pos: -81.5,-31.5
+ parent: 2
- proto: DonkpocketBoxSpawner
entities:
- uid: 12487
@@ -80198,6 +81586,166 @@ entities:
- type: Transform
pos: -111.69211,-31.619923
parent: 2
+- proto: DoubleBed
+ entities:
+ - uid: 2024
+ components:
+ - type: Transform
+ pos: -42.5,1.5
+ parent: 2
+ - uid: 2264
+ components:
+ - type: Transform
+ pos: -70.5,-60.5
+ parent: 2
+ - uid: 2265
+ components:
+ - type: Transform
+ pos: -70.5,-52.5
+ parent: 2
+ - uid: 2275
+ components:
+ - type: Transform
+ pos: -132.5,-51.5
+ parent: 2
+ - uid: 2278
+ components:
+ - type: Transform
+ pos: -36.5,-35.5
+ parent: 2
+ - uid: 2280
+ components:
+ - type: Transform
+ pos: -57.5,-53.5
+ parent: 2
+ - uid: 2290
+ components:
+ - type: Transform
+ pos: -129.5,-15.5
+ parent: 2
+ - uid: 2293
+ components:
+ - type: Transform
+ pos: -42.5,-5.5
+ parent: 2
+ - uid: 2296
+ components:
+ - type: Transform
+ pos: -70.5,1.5
+ parent: 2
+ - uid: 8570
+ components:
+ - type: Transform
+ pos: -76.5,-32.5
+ parent: 2
+ - uid: 27305
+ components:
+ - type: Transform
+ pos: -86.5,-76.5
+ parent: 2
+ - uid: 27473
+ components:
+ - type: Transform
+ pos: -96.5,-68.5
+ parent: 2
+ - uid: 27474
+ components:
+ - type: Transform
+ pos: -96.5,-70.5
+ parent: 2
+- proto: DoubleBedsheetCaptain
+ entities:
+ - uid: 2281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,1.5
+ parent: 2
+- proto: DoubleBedsheetCE
+ entities:
+ - uid: 2266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -129.5,-15.5
+ parent: 2
+- proto: DoubleBedsheetCMO
+ entities:
+ - uid: 2291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-35.5
+ parent: 2
+- proto: DoubleBedsheetCosmos
+ entities:
+ - uid: 27528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-53.5
+ parent: 2
+ - uid: 27529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-52.5
+ parent: 2
+ - uid: 27530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-60.5
+ parent: 2
+- proto: DoubleBedsheetHOS
+ entities:
+ - uid: 8569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-32.5
+ parent: 2
+- proto: DoubleBedsheetIan
+ entities:
+ - uid: 2263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-5.5
+ parent: 2
+- proto: DoubleBedsheetNT
+ entities:
+ - uid: 2279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,1.5
+ parent: 2
+ - uid: 22888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-70.5
+ parent: 2
+ - uid: 27437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-76.5
+ parent: 2
+ - uid: 27560
+ components:
+ - type: Transform
+ pos: -96.5,-68.5
+ parent: 2
+- proto: DoubleBedsheetRD
+ entities:
+ - uid: 2319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,-51.5
+ parent: 2
- proto: DoubleEmergencyNitrogenTankFilled
entities:
- uid: 12497
@@ -80350,10 +81898,10 @@ entities:
parent: 2
- proto: DresserHeadOfSecurityFilled
entities:
- - uid: 12520
+ - uid: 27300
components:
- type: Transform
- pos: -76.5,-29.5
+ pos: -76.5,-31.5
parent: 2
- proto: DresserQuarterMasterFilled
entities:
@@ -80566,6 +82114,18 @@ entities:
- type: Transform
pos: -44.391315,-54.801796
parent: 2
+- proto: DrinkTheMartinez
+ entities:
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: -96.93301,-59.302326
+ parent: 2
+ - uid: 27568
+ components:
+ - type: Transform
+ pos: -88.361115,-73.40448
+ parent: 2
- proto: DrinkVodkaBottleFull
entities:
- uid: 12554
@@ -80619,8 +82179,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19497:
- - OutputHigh: On
- - OutputLow: Off
+ - - OutputHigh
+ - On
+ - - OutputLow
+ - Off
- type: Physics
canCollide: False
bodyType: Static
@@ -80721,12 +82283,67 @@ entities:
rot: 3.141592653589793 rad
pos: -42.5,0.5
parent: 2
+ - uid: 12777
+ components:
+ - type: Transform
+ pos: -77.5,-26.5
+ parent: 2
- uid: 20673
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -78.5,-21.5
parent: 2
+- proto: EmergencyMedipen
+ entities:
+ - uid: 27287
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27288
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27290
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27291
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27292
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27293
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.74122,-73.2009
+ parent: 2
- proto: EmergencyNitrogenTankFilled
entities:
- uid: 12576
@@ -81111,15 +82728,6 @@ entities:
parent: 2
- type: FaxMachine
name: Бар
- - uid: 12627
- components:
- - type: MetaData
- name: факс дальнего действия (Репортёрская)
- - type: Transform
- pos: -90.5,-64.5
- parent: 2
- - type: FaxMachine
- name: Репортёрская
- uid: 12628
components:
- type: MetaData
@@ -81156,6 +82764,13 @@ entities:
parent: 2
- type: FaxMachine
name: Старший инженер
+ - uid: 27542
+ components:
+ - type: Transform
+ pos: -88.5,-72.5
+ parent: 2
+ - type: FaxMachine
+ name: Лейтенант "Синий Щит"
- proto: FaxMachineCaptain
entities:
- uid: 12632
@@ -81183,11 +82798,6 @@ entities:
- type: Label
- proto: filingCabinetDrawerRandom
entities:
- - uid: 12634
- components:
- - type: Transform
- pos: -49.5,-2.5
- parent: 2
- uid: 12635
components:
- type: Transform
@@ -82547,12 +84157,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -76.5,-36.5
parent: 2
- - uid: 12777
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-26.5
- parent: 2
- uid: 12778
components:
- type: Transform
@@ -83376,14 +84980,53 @@ entities:
rot: -1.5707963267948966 rad
pos: -56.5,-38.5
parent: 2
- - uid: 12900
+ - uid: 27406
components:
- type: Transform
- pos: -92.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-74.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 117
+ - 27319
+ - 27318
+ - uid: 27407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-75.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27319
+ - uid: 27414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-62.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-67.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - 27321
+ - uid: 27450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,-71.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27321
- proto: FirelockEdge
entities:
- uid: 12901
@@ -83879,6 +85522,109 @@ entities:
deviceLists:
- 12672
- 12690
+ - uid: 27413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-65.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-73.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27321
+ - uid: 27420
+ components:
+ - type: Transform
+ pos: -94.5,-71.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27421
+ components:
+ - type: Transform
+ pos: -93.5,-71.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27422
+ components:
+ - type: Transform
+ pos: -92.5,-71.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27423
+ components:
+ - type: Transform
+ pos: -91.5,-71.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27427
+ components:
+ - type: Transform
+ pos: -99.5,-58.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27320
+ - uid: 27428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-58.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27435
+ - uid: 27429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-58.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27435
+ - uid: 27430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-58.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27435
+ - uid: 27431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-58.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27435
+ - uid: 27432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-58.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27435
- proto: FirelockElectronics
entities:
- uid: 12955
@@ -85277,6 +87023,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -80.5,6.5
parent: 2
+ - uid: 27424
+ components:
+ - type: Transform
+ pos: -92.5,-62.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - uid: 27426
+ components:
+ - type: Transform
+ pos: -95.5,-60.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27320
- proto: Fireplace
entities:
- uid: 13123
@@ -85367,6 +87129,50 @@ entities:
- type: Transform
pos: -18.5,-23.5
parent: 2
+- proto: FlippoLighterSunriseBlue
+ entities:
+ - uid: 10507
+ components:
+ - type: Transform
+ parent: 10235
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27469
+ components:
+ - type: Transform
+ parent: 27464
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27470
+ components:
+ - type: Transform
+ parent: 27464
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27477
+ components:
+ - type: Transform
+ parent: 27475
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27481
+ components:
+ - type: Transform
+ parent: 27475
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27491
+ components:
+ - type: Transform
+ parent: 27490
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: FlippoLighterSunriseContractor
entities:
- uid: 2451
@@ -86321,6 +88127,13 @@ entities:
- type: Transform
pos: -95.31102,-5.104067
parent: 2
+- proto: FoodNoodles
+ entities:
+ - uid: 27574
+ components:
+ - type: Transform
+ pos: -76.50515,3.688898
+ parent: 2
- proto: FoodNoodlesSpesslaw
entities:
- uid: 13299
@@ -86376,6 +88189,24 @@ entities:
- type: Transform
pos: -54.488308,-44.377945
parent: 2
+ - uid: 22632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.65734,-61.32172
+ parent: 2
+ - uid: 27538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.65734,-61.69672
+ parent: 2
+ - uid: 27539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.65734,-61.50922
+ parent: 2
- proto: ForensicReportPaper
entities:
- uid: 13308
@@ -86515,7 +88346,7 @@ entities:
pos: -27.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13327
components:
- type: Transform
@@ -86523,7 +88354,7 @@ entities:
pos: -28.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13328
components:
- type: Transform
@@ -86545,7 +88376,7 @@ entities:
pos: -22.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13331
components:
- type: Transform
@@ -86625,15 +88456,6 @@ entities:
- type: Transform
pos: -110.5,2.5
parent: 2
- - uid: 13342
- components:
- - type: MetaData
- desc: An old gas miner. It probably won't be of much use anymore.
- - type: Transform
- pos: -59.5,-9.5
- parent: 2
- missingComponents:
- - GasMiner
- proto: GasMinerWaterVapor
entities:
- uid: 13343
@@ -86771,7 +88593,7 @@ entities:
pos: -29.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13363
components:
- type: Transform
@@ -86995,7 +88817,7 @@ entities:
pos: -103.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13399
components:
- type: Transform
@@ -87003,7 +88825,7 @@ entities:
pos: -105.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13400
components:
- type: Transform
@@ -87011,7 +88833,7 @@ entities:
pos: -19.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13401
components:
- type: Transform
@@ -87019,7 +88841,7 @@ entities:
pos: -26.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13402
components:
- type: Transform
@@ -87033,7 +88855,7 @@ entities:
pos: -75.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13404
components:
- type: Transform
@@ -87041,7 +88863,7 @@ entities:
pos: -95.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13405
components:
- type: Transform
@@ -87070,7 +88892,7 @@ entities:
pos: -72.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13409
components:
- type: Transform
@@ -87078,35 +88900,35 @@ entities:
pos: -70.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13410
components:
- type: Transform
pos: -66.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13411
components:
- type: Transform
pos: -58.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13412
components:
- type: Transform
pos: -57.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13413
components:
- type: Transform
pos: -19.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13414
components:
- type: Transform
@@ -87120,7 +88942,7 @@ entities:
pos: -134.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13416
components:
- type: Transform
@@ -87136,7 +88958,7 @@ entities:
pos: -115.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13418
components:
- type: Transform
@@ -87198,7 +89020,7 @@ entities:
pos: -126.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13427
components:
- type: Transform
@@ -87220,7 +89042,7 @@ entities:
pos: -30.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13430
components:
- type: Transform
@@ -87281,7 +89103,7 @@ entities:
pos: -125.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13439
components:
- type: Transform
@@ -87312,7 +89134,7 @@ entities:
pos: -58.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13444
components:
- type: Transform
@@ -87320,7 +89142,7 @@ entities:
pos: -70.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13445
components:
- type: Transform
@@ -87350,7 +89172,7 @@ entities:
pos: -66.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13450
components:
- type: Transform
@@ -87358,14 +89180,14 @@ entities:
pos: -60.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13451
components:
- type: Transform
pos: -62.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13452
components:
- type: Transform
@@ -87379,14 +89201,14 @@ entities:
pos: -133.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13454
components:
- type: Transform
pos: -84.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13455
components:
- type: Transform
@@ -87400,7 +89222,7 @@ entities:
pos: -133.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13457
components:
- type: Transform
@@ -87425,7 +89247,7 @@ entities:
pos: -75.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13461
components:
- type: Transform
@@ -87433,7 +89255,7 @@ entities:
pos: -55.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13462
components:
- type: Transform
@@ -87441,14 +89263,14 @@ entities:
pos: -103.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13463
components:
- type: Transform
pos: -43.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13464
components:
- type: Transform
@@ -87456,7 +89278,7 @@ entities:
pos: -40.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13465
components:
- type: Transform
@@ -87464,7 +89286,7 @@ entities:
pos: -42.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13466
components:
- type: Transform
@@ -87472,7 +89294,7 @@ entities:
pos: -39.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13467
components:
- type: Transform
@@ -87480,7 +89302,7 @@ entities:
pos: -52.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13468
components:
- type: Transform
@@ -87488,14 +89310,14 @@ entities:
pos: -52.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13469
components:
- type: Transform
pos: -43.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13470
components:
- type: Transform
@@ -87503,7 +89325,7 @@ entities:
pos: -48.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13471
components:
- type: Transform
@@ -87511,7 +89333,7 @@ entities:
pos: -48.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13472
components:
- type: Transform
@@ -87519,7 +89341,7 @@ entities:
pos: -44.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13473
components:
- type: Transform
@@ -87527,14 +89349,14 @@ entities:
pos: -33.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13474
components:
- type: Transform
pos: -79.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13475
components:
- type: Transform
@@ -87542,14 +89364,14 @@ entities:
pos: -36.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13476
components:
- type: Transform
pos: -80.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13477
components:
- type: Transform
@@ -87557,7 +89379,7 @@ entities:
pos: -26.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13478
components:
- type: Transform
@@ -87565,14 +89387,14 @@ entities:
pos: -23.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13479
components:
- type: Transform
pos: -41.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13480
components:
- type: Transform
@@ -87580,7 +89402,7 @@ entities:
pos: -68.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13481
components:
- type: Transform
@@ -87606,7 +89428,7 @@ entities:
pos: -39.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13485
components:
- type: Transform
@@ -87614,7 +89436,7 @@ entities:
pos: -40.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13486
components:
- type: Transform
@@ -87622,7 +89444,7 @@ entities:
pos: -39.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13487
components:
- type: Transform
@@ -87630,7 +89452,7 @@ entities:
pos: -24.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13488
components:
- type: Transform
@@ -87638,14 +89460,14 @@ entities:
pos: -33.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13489
components:
- type: Transform
pos: -14.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13490
components:
- type: Transform
@@ -87653,7 +89475,7 @@ entities:
pos: -18.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13491
components:
- type: Transform
@@ -87661,14 +89483,14 @@ entities:
pos: -10.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13492
components:
- type: Transform
pos: -4.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13493
components:
- type: Transform
@@ -87676,7 +89498,7 @@ entities:
pos: -10.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13494
components:
- type: Transform
@@ -87684,7 +89506,7 @@ entities:
pos: -4.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13495
components:
- type: Transform
@@ -87703,7 +89525,7 @@ entities:
pos: -17.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13498
components:
- type: Transform
@@ -87711,7 +89533,7 @@ entities:
pos: -21.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13499
components:
- type: Transform
@@ -87719,14 +89541,14 @@ entities:
pos: -21.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13500
components:
- type: Transform
pos: -38.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13501
components:
- type: Transform
@@ -87734,7 +89556,7 @@ entities:
pos: -37.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13502
components:
- type: Transform
@@ -87742,7 +89564,7 @@ entities:
pos: -45.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13503
components:
- type: Transform
@@ -87750,7 +89572,7 @@ entities:
pos: -19.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13504
components:
- type: Transform
@@ -87758,14 +89580,14 @@ entities:
pos: -105.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13505
components:
- type: Transform
pos: -19.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13506
components:
- type: Transform
@@ -87773,7 +89595,7 @@ entities:
pos: -22.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13507
components:
- type: Transform
@@ -87781,7 +89603,7 @@ entities:
pos: -45.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13508
components:
- type: Transform
@@ -87789,7 +89611,7 @@ entities:
pos: -108.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13509
components:
- type: Transform
@@ -87797,7 +89619,7 @@ entities:
pos: -47.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13510
components:
- type: Transform
@@ -87805,7 +89627,7 @@ entities:
pos: -39.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13511
components:
- type: Transform
@@ -87821,7 +89643,7 @@ entities:
pos: -50.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13513
components:
- type: Transform
@@ -87829,7 +89651,7 @@ entities:
pos: -42.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13514
components:
- type: Transform
@@ -87837,21 +89659,21 @@ entities:
pos: -43.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13515
components:
- type: Transform
pos: -42.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13516
components:
- type: Transform
pos: -55.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13517
components:
- type: Transform
@@ -87859,7 +89681,7 @@ entities:
pos: -64.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13518
components:
- type: Transform
@@ -87867,14 +89689,14 @@ entities:
pos: -27.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13519
components:
- type: Transform
pos: -74.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13520
components:
- type: Transform
@@ -87882,7 +89704,7 @@ entities:
pos: -82.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13521
components:
- type: Transform
@@ -87914,7 +89736,7 @@ entities:
pos: -90.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13525
components:
- type: Transform
@@ -87922,7 +89744,7 @@ entities:
pos: -80.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13526
components:
- type: Transform
@@ -87930,7 +89752,7 @@ entities:
pos: -137.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13527
components:
- type: Transform
@@ -87938,7 +89760,7 @@ entities:
pos: -125.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13528
components:
- type: Transform
@@ -87962,7 +89784,7 @@ entities:
pos: -82.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13531
components:
- type: Transform
@@ -87970,7 +89792,7 @@ entities:
pos: -83.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13532
components:
- type: Transform
@@ -87978,7 +89800,7 @@ entities:
pos: -91.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13533
components:
- type: Transform
@@ -87986,7 +89808,7 @@ entities:
pos: -82.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13534
components:
- type: Transform
@@ -87994,7 +89816,7 @@ entities:
pos: -87.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13535
components:
- type: Transform
@@ -88002,7 +89824,7 @@ entities:
pos: -80.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13536
components:
- type: Transform
@@ -88010,7 +89832,7 @@ entities:
pos: -75.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13537
components:
- type: Transform
@@ -88018,7 +89840,7 @@ entities:
pos: -45.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13538
components:
- type: Transform
@@ -88026,7 +89848,7 @@ entities:
pos: -130.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13539
components:
- type: Transform
@@ -88042,7 +89864,7 @@ entities:
pos: -104.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13541
components:
- type: Transform
@@ -88057,7 +89879,7 @@ entities:
pos: -45.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13543
components:
- type: Transform
@@ -88065,7 +89887,7 @@ entities:
pos: -94.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13544
components:
- type: Transform
@@ -88073,7 +89895,7 @@ entities:
pos: -54.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13545
components:
- type: Transform
@@ -88081,7 +89903,7 @@ entities:
pos: -50.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13546
components:
- type: Transform
@@ -88089,7 +89911,7 @@ entities:
pos: -51.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13547
components:
- type: Transform
@@ -88097,7 +89919,7 @@ entities:
pos: -93.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13548
components:
- type: Transform
@@ -88105,7 +89927,7 @@ entities:
pos: -61.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13549
components:
- type: Transform
@@ -88113,14 +89935,14 @@ entities:
pos: -94.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13550
components:
- type: Transform
pos: -70.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13551
components:
- type: Transform
@@ -88128,7 +89950,7 @@ entities:
pos: -70.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13552
components:
- type: Transform
@@ -88136,7 +89958,7 @@ entities:
pos: -58.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13553
components:
- type: Transform
@@ -88144,7 +89966,7 @@ entities:
pos: -21.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13554
components:
- type: Transform
@@ -88171,7 +89993,7 @@ entities:
pos: -37.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13558
components:
- type: Transform
@@ -88191,14 +90013,14 @@ entities:
pos: -74.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13561
components:
- type: Transform
pos: -78.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13562
components:
- type: Transform
@@ -88206,7 +90028,7 @@ entities:
pos: -95.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13563
components:
- type: Transform
@@ -88214,7 +90036,7 @@ entities:
pos: -19.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13564
components:
- type: Transform
@@ -88230,7 +90052,7 @@ entities:
pos: -80.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13566
components:
- type: Transform
@@ -88238,21 +90060,21 @@ entities:
pos: -67.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13567
components:
- type: Transform
pos: -25.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13568
components:
- type: Transform
pos: -67.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13569
components:
- type: Transform
@@ -88260,7 +90082,7 @@ entities:
pos: -14.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13570
components:
- type: Transform
@@ -88268,7 +90090,7 @@ entities:
pos: -96.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13571
components:
- type: Transform
@@ -88276,7 +90098,7 @@ entities:
pos: -88.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13572
components:
- type: Transform
@@ -88284,7 +90106,7 @@ entities:
pos: -83.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13573
components:
- type: Transform
@@ -88292,7 +90114,7 @@ entities:
pos: -81.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13574
components:
- type: Transform
@@ -88300,7 +90122,7 @@ entities:
pos: -28.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13575
components:
- type: Transform
@@ -88308,7 +90130,7 @@ entities:
pos: -17.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13576
components:
- type: Transform
@@ -88316,7 +90138,7 @@ entities:
pos: -49.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13577
components:
- type: Transform
@@ -88332,7 +90154,7 @@ entities:
pos: -99.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13579
components:
- type: Transform
@@ -88340,14 +90162,14 @@ entities:
pos: -111.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13580
components:
- type: Transform
pos: -89.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13581
components:
- type: Transform
@@ -88369,7 +90191,7 @@ entities:
pos: -125.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13584
components:
- type: Transform
@@ -88377,7 +90199,7 @@ entities:
pos: -126.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13585
components:
- type: Transform
@@ -88385,14 +90207,14 @@ entities:
pos: -83.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13586
components:
- type: Transform
pos: -111.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13587
components:
- type: Transform
@@ -88400,7 +90222,7 @@ entities:
pos: -82.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13588
components:
- type: Transform
@@ -88408,7 +90230,7 @@ entities:
pos: -114.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13589
components:
- type: Transform
@@ -88416,7 +90238,7 @@ entities:
pos: -51.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13590
components:
- type: Transform
@@ -88424,14 +90246,14 @@ entities:
pos: -83.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13591
components:
- type: Transform
pos: -83.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13592
components:
- type: Transform
@@ -88439,7 +90261,7 @@ entities:
pos: -81.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13593
components:
- type: Transform
@@ -88455,7 +90277,7 @@ entities:
pos: -99.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13595
components:
- type: Transform
@@ -88463,14 +90285,14 @@ entities:
pos: -125.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13596
components:
- type: Transform
pos: -85.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13597
components:
- type: Transform
@@ -88478,7 +90300,7 @@ entities:
pos: -86.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13598
components:
- type: Transform
@@ -88494,7 +90316,7 @@ entities:
pos: -76.5,-75.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13600
components:
- type: Transform
@@ -88502,7 +90324,7 @@ entities:
pos: -78.5,-76.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13601
components:
- type: Transform
@@ -88510,7 +90332,7 @@ entities:
pos: -78.5,-75.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13602
components:
- type: Transform
@@ -88518,7 +90340,7 @@ entities:
pos: -75.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13603
components:
- type: Transform
@@ -88526,7 +90348,7 @@ entities:
pos: -55.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13604
components:
- type: Transform
@@ -88534,7 +90356,7 @@ entities:
pos: -54.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13605
components:
- type: Transform
@@ -88542,7 +90364,7 @@ entities:
pos: -42.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13606
components:
- type: Transform
@@ -88550,7 +90372,7 @@ entities:
pos: -41.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13607
components:
- type: Transform
@@ -88558,14 +90380,14 @@ entities:
pos: -15.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13608
components:
- type: Transform
pos: -95.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13609
components:
- type: Transform
@@ -88573,7 +90395,7 @@ entities:
pos: -30.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13610
components:
- type: Transform
@@ -88581,7 +90403,7 @@ entities:
pos: -25.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13611
components:
- type: Transform
@@ -88589,7 +90411,7 @@ entities:
pos: -104.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13612
components:
- type: Transform
@@ -88597,7 +90419,7 @@ entities:
pos: -134.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13613
components:
- type: Transform
@@ -88605,7 +90427,7 @@ entities:
pos: -93.5,34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13614
components:
- type: Transform
@@ -88613,7 +90435,7 @@ entities:
pos: -66.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13615
components:
- type: Transform
@@ -88621,7 +90443,7 @@ entities:
pos: -56.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13616
components:
- type: Transform
@@ -88629,7 +90451,7 @@ entities:
pos: -76.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13617
components:
- type: Transform
@@ -88637,14 +90459,14 @@ entities:
pos: -36.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13618
components:
- type: Transform
pos: -17.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13619
components:
- type: Transform
@@ -88652,21 +90474,21 @@ entities:
pos: -32.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13620
components:
- type: Transform
pos: -32.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13621
components:
- type: Transform
pos: -33.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13622
components:
- type: Transform
@@ -88674,7 +90496,7 @@ entities:
pos: -120.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13623
components:
- type: Transform
@@ -88690,7 +90512,7 @@ entities:
pos: -120.5,-67.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13625
components:
- type: Transform
@@ -88727,7 +90549,7 @@ entities:
pos: -75.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13630
components:
- type: Transform
@@ -88735,7 +90557,7 @@ entities:
pos: -71.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13631
components:
- type: Transform
@@ -88833,7 +90655,7 @@ entities:
pos: -69.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13645
components:
- type: Transform
@@ -88841,7 +90663,7 @@ entities:
pos: -109.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13646
components:
- type: Transform
@@ -88849,7 +90671,7 @@ entities:
pos: -111.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13647
components:
- type: Transform
@@ -88857,25 +90679,76 @@ entities:
pos: -110.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13648
components:
- type: Transform
pos: -93.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasPipeBroken
- entities:
- - uid: 13649
+ color: '#FF0000FF'
+ - uid: 27344
components:
- type: Transform
- anchored: False
- pos: -77.80132,-26.703863
+ rot: 3.141592653589793 rad
+ pos: -94.5,-68.5
parent: 2
- - type: Physics
- canCollide: True
- bodyType: Dynamic
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27345
+ components:
+ - type: Transform
+ pos: -94.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27359
+ components:
+ - type: Transform
+ pos: -89.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-69.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-73.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-72.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- proto: GasPipeFourway
entities:
- uid: 13650
@@ -88891,14 +90764,14 @@ entities:
pos: -30.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13652
components:
- type: Transform
pos: -119.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13653
components:
- type: Transform
@@ -88922,14 +90795,14 @@ entities:
pos: -94.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13657
components:
- type: Transform
pos: -120.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13658
components:
- type: Transform
@@ -88941,70 +90814,70 @@ entities:
pos: -42.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13660
components:
- type: Transform
pos: -29.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13661
components:
- type: Transform
pos: -34.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13662
components:
- type: Transform
pos: -33.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13663
components:
- type: Transform
pos: -11.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13664
components:
- type: Transform
pos: -29.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13665
components:
- type: Transform
pos: -18.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13666
components:
- type: Transform
pos: -10.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13667
components:
- type: Transform
pos: -30.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13668
components:
- type: Transform
pos: -30.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13669
components:
- type: Transform
@@ -89016,21 +90889,21 @@ entities:
pos: -28.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13671
components:
- type: Transform
pos: -19.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13672
components:
- type: Transform
pos: -58.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13673
components:
- type: Transform
@@ -89051,63 +90924,63 @@ entities:
pos: -114.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13676
components:
- type: Transform
pos: -119.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13677
components:
- type: Transform
pos: -120.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13678
components:
- type: Transform
pos: -119.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13679
components:
- type: Transform
pos: -57.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13680
components:
- type: Transform
pos: -71.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13681
components:
- type: Transform
pos: -70.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13682
components:
- type: Transform
pos: -60.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13683
components:
- type: Transform
pos: -62.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13684
components:
- type: Transform
@@ -89119,21 +90992,21 @@ entities:
pos: -115.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13686
components:
- type: Transform
pos: -29.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13687
components:
- type: Transform
pos: -66.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13688
components:
- type: Transform
@@ -89145,91 +91018,91 @@ entities:
pos: -68.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13690
components:
- type: Transform
pos: -70.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13691
components:
- type: Transform
pos: -96.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13692
components:
- type: Transform
pos: -96.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13693
components:
- type: Transform
pos: -94.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13694
components:
- type: Transform
pos: -94.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13695
components:
- type: Transform
pos: -134.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13696
components:
- type: Transform
pos: -76.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13697
components:
- type: Transform
pos: -87.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13698
components:
- type: Transform
pos: -115.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13699
components:
- type: Transform
pos: -93.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13700
components:
- type: Transform
pos: -94.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13701
components:
- type: Transform
pos: -75.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13702
components:
- type: Transform
@@ -89243,35 +91116,35 @@ entities:
pos: -115.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13704
components:
- type: Transform
pos: -29.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13705
components:
- type: Transform
pos: -119.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13706
components:
- type: Transform
pos: -25.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13707
components:
- type: Transform
pos: -24.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13708
components:
- type: Transform
@@ -89299,14 +91172,38 @@ entities:
pos: -70.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13712
components:
- type: Transform
pos: -103.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
+ - uid: 17534
+ components:
+ - type: Transform
+ pos: -129.5,31.5
+ parent: 2
+ - uid: 19491
+ components:
+ - type: Transform
+ pos: -129.5,35.5
+ parent: 2
+ - uid: 27323
+ components:
+ - type: Transform
+ pos: -91.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27324
+ components:
+ - type: Transform
+ pos: -93.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- proto: GasPipeHalf
entities:
- uid: 13713
@@ -89352,7 +91249,7 @@ entities:
pos: -118.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- proto: GasPipeSensorMixedAir
entities:
- uid: 13717
@@ -89390,68 +91287,37 @@ entities:
pos: -120.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- proto: GasPipeStraight
entities:
- - uid: 13721
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 13722
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 13723
components:
- type: Transform
pos: -103.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 13724
- components:
- - type: Transform
- pos: -91.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF0000FF'
- uid: 13725
components:
- type: Transform
pos: -103.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 13726
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13727
components:
- type: Transform
pos: -103.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13728
components:
- type: Transform
pos: -103.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13729
components:
- type: Transform
@@ -89459,7 +91325,7 @@ entities:
pos: -101.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13730
components:
- type: Transform
@@ -89474,7 +91340,7 @@ entities:
pos: -36.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13732
components:
- type: Transform
@@ -89482,7 +91348,7 @@ entities:
pos: -96.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13733
components:
- type: Transform
@@ -89498,7 +91364,7 @@ entities:
pos: -120.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13735
components:
- type: Transform
@@ -89531,21 +91397,21 @@ entities:
pos: -25.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13740
components:
- type: Transform
pos: -94.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13741
components:
- type: Transform
pos: -24.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13742
components:
- type: Transform
@@ -89553,7 +91419,7 @@ entities:
pos: -70.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13743
components:
- type: Transform
@@ -89561,7 +91427,7 @@ entities:
pos: -86.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13744
components:
- type: Transform
@@ -89569,14 +91435,14 @@ entities:
pos: -49.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13745
components:
- type: Transform
pos: -58.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13746
components:
- type: Transform
@@ -89839,7 +91705,7 @@ entities:
pos: -104.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13779
components:
- type: Transform
@@ -89888,7 +91754,7 @@ entities:
pos: -131.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13786
components:
- type: Transform
@@ -89902,7 +91768,7 @@ entities:
pos: -105.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13788
components:
- type: Transform
@@ -89933,7 +91799,7 @@ entities:
pos: -75.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13792
components:
- type: Transform
@@ -89941,7 +91807,7 @@ entities:
pos: -23.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13793
components:
- type: Transform
@@ -89964,7 +91830,7 @@ entities:
pos: -29.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13796
components:
- type: Transform
@@ -89989,7 +91855,7 @@ entities:
pos: -109.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13800
components:
- type: Transform
@@ -89997,7 +91863,7 @@ entities:
pos: -99.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13801
components:
- type: Transform
@@ -90005,7 +91871,7 @@ entities:
pos: -105.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13802
components:
- type: Transform
@@ -90031,7 +91897,7 @@ entities:
pos: -76.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13806
components:
- type: Transform
@@ -90039,7 +91905,7 @@ entities:
pos: -92.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13807
components:
- type: Transform
@@ -90055,7 +91921,7 @@ entities:
pos: -22.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13809
components:
- type: Transform
@@ -90063,7 +91929,7 @@ entities:
pos: -120.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13810
components:
- type: Transform
@@ -90071,7 +91937,7 @@ entities:
pos: -146.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13811
components:
- type: Transform
@@ -90090,7 +91956,7 @@ entities:
pos: -67.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13814
components:
- type: Transform
@@ -90141,7 +92007,7 @@ entities:
pos: -76.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13822
components:
- type: Transform
@@ -90256,7 +92122,7 @@ entities:
pos: -104.5,35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13838
components:
- type: Transform
@@ -90264,7 +92130,7 @@ entities:
pos: -68.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13839
components:
- type: Transform
@@ -90272,7 +92138,7 @@ entities:
pos: -145.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13840
components:
- type: Transform
@@ -90280,7 +92146,7 @@ entities:
pos: -150.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13841
components:
- type: Transform
@@ -90288,7 +92154,7 @@ entities:
pos: -142.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13842
components:
- type: Transform
@@ -90296,7 +92162,7 @@ entities:
pos: -144.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13843
components:
- type: Transform
@@ -90304,7 +92170,7 @@ entities:
pos: -143.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13844
components:
- type: Transform
@@ -90312,7 +92178,7 @@ entities:
pos: -141.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13845
components:
- type: Transform
@@ -90320,7 +92186,7 @@ entities:
pos: -141.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13846
components:
- type: Transform
@@ -90328,7 +92194,7 @@ entities:
pos: -149.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13847
components:
- type: Transform
@@ -90341,14 +92207,14 @@ entities:
pos: -67.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13849
components:
- type: Transform
pos: -68.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13850
components:
- type: Transform
@@ -90364,7 +92230,7 @@ entities:
pos: -119.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13852
components:
- type: Transform
@@ -90372,14 +92238,14 @@ entities:
pos: -119.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13853
components:
- type: Transform
pos: -67.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13854
components:
- type: Transform
@@ -90399,7 +92265,7 @@ entities:
pos: -20.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13857
components:
- type: Transform
@@ -90407,7 +92273,7 @@ entities:
pos: -117.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13858
components:
- type: Transform
@@ -90415,7 +92281,7 @@ entities:
pos: -118.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13859
components:
- type: Transform
@@ -90423,7 +92289,7 @@ entities:
pos: -62.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13860
components:
- type: Transform
@@ -90431,7 +92297,7 @@ entities:
pos: -67.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13861
components:
- type: Transform
@@ -90439,7 +92305,7 @@ entities:
pos: -68.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13862
components:
- type: Transform
@@ -90463,7 +92329,7 @@ entities:
pos: -66.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13865
components:
- type: Transform
@@ -90471,49 +92337,49 @@ entities:
pos: -67.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13866
components:
- type: Transform
pos: -58.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13867
components:
- type: Transform
pos: -58.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13868
components:
- type: Transform
pos: -119.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13869
components:
- type: Transform
pos: -120.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13870
components:
- type: Transform
pos: -120.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13871
components:
- type: Transform
pos: -119.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13872
components:
- type: Transform
@@ -90525,70 +92391,70 @@ entities:
pos: -93.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13874
components:
- type: Transform
pos: -29.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13875
components:
- type: Transform
pos: -29.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13876
components:
- type: Transform
pos: -30.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13877
components:
- type: Transform
pos: -29.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13878
components:
- type: Transform
pos: -29.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13879
components:
- type: Transform
pos: -29.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13880
components:
- type: Transform
pos: -29.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13881
components:
- type: Transform
pos: -29.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13882
components:
- type: Transform
pos: -120.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13883
components:
- type: Transform
@@ -90596,14 +92462,14 @@ entities:
pos: -39.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13884
components:
- type: Transform
pos: -53.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13885
components:
- type: Transform
@@ -90611,7 +92477,7 @@ entities:
pos: -119.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13886
components:
- type: Transform
@@ -90619,7 +92485,7 @@ entities:
pos: -29.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13887
components:
- type: Transform
@@ -90627,21 +92493,21 @@ entities:
pos: -116.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13888
components:
- type: Transform
pos: -93.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13889
components:
- type: Transform
pos: -104.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13890
components:
- type: Transform
@@ -90662,14 +92528,14 @@ entities:
pos: -94.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13893
components:
- type: Transform
pos: -93.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13894
components:
- type: Transform
@@ -90677,7 +92543,7 @@ entities:
pos: -73.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13895
components:
- type: Transform
@@ -90685,7 +92551,7 @@ entities:
pos: -94.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13896
components:
- type: Transform
@@ -90700,35 +92566,35 @@ entities:
pos: -68.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13898
components:
- type: Transform
pos: -68.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13899
components:
- type: Transform
pos: -67.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13900
components:
- type: Transform
pos: -64.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13901
components:
- type: Transform
pos: -93.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13902
components:
- type: Transform
@@ -90736,7 +92602,7 @@ entities:
pos: -72.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13903
components:
- type: Transform
@@ -90744,7 +92610,7 @@ entities:
pos: -30.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13904
components:
- type: Transform
@@ -90752,14 +92618,14 @@ entities:
pos: -105.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13905
components:
- type: Transform
pos: -30.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13906
components:
- type: Transform
@@ -90767,7 +92633,7 @@ entities:
pos: -98.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13907
components:
- type: Transform
@@ -90775,7 +92641,7 @@ entities:
pos: -125.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13908
components:
- type: Transform
@@ -90783,7 +92649,7 @@ entities:
pos: -98.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13909
components:
- type: Transform
@@ -90791,7 +92657,7 @@ entities:
pos: -125.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13910
components:
- type: Transform
@@ -90807,7 +92673,7 @@ entities:
pos: -99.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13912
components:
- type: Transform
@@ -90821,35 +92687,35 @@ entities:
pos: -29.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13914
components:
- type: Transform
pos: -18.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13915
components:
- type: Transform
pos: -18.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13916
components:
- type: Transform
pos: -18.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13917
components:
- type: Transform
pos: -103.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13918
components:
- type: Transform
@@ -90857,7 +92723,7 @@ entities:
pos: -26.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13919
components:
- type: Transform
@@ -90865,7 +92731,7 @@ entities:
pos: -115.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13920
components:
- type: Transform
@@ -90873,7 +92739,7 @@ entities:
pos: -116.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13921
components:
- type: Transform
@@ -90896,35 +92762,35 @@ entities:
pos: -98.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13924
components:
- type: Transform
pos: -57.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13925
components:
- type: Transform
pos: -30.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13926
components:
- type: Transform
pos: -30.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13927
components:
- type: Transform
pos: -30.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13928
components:
- type: Transform
@@ -90964,7 +92830,7 @@ entities:
pos: -133.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13933
components:
- type: Transform
@@ -90972,7 +92838,7 @@ entities:
pos: -133.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13934
components:
- type: Transform
@@ -90980,7 +92846,7 @@ entities:
pos: -100.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13935
components:
- type: Transform
@@ -90988,14 +92854,14 @@ entities:
pos: -130.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13936
components:
- type: Transform
pos: -134.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13937
components:
- type: Transform
@@ -91078,7 +92944,7 @@ entities:
pos: -26.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13950
components:
- type: Transform
@@ -91086,7 +92952,7 @@ entities:
pos: -30.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13951
components:
- type: Transform
@@ -91100,21 +92966,21 @@ entities:
pos: -33.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13953
components:
- type: Transform
pos: -134.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13954
components:
- type: Transform
pos: -134.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13955
components:
- type: Transform
@@ -91314,14 +93180,14 @@ entities:
pos: -54.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13982
components:
- type: Transform
pos: -134.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13983
components:
- type: Transform
@@ -91354,7 +93220,7 @@ entities:
pos: -131.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13988
components:
- type: Transform
@@ -91362,7 +93228,7 @@ entities:
pos: -129.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13989
components:
- type: Transform
@@ -91376,7 +93242,7 @@ entities:
pos: -132.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 13991
components:
- type: Transform
@@ -91384,7 +93250,7 @@ entities:
pos: -133.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13992
components:
- type: Transform
@@ -91425,7 +93291,7 @@ entities:
pos: -25.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13998
components:
- type: Transform
@@ -91433,7 +93299,7 @@ entities:
pos: -24.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 13999
components:
- type: Transform
@@ -91459,7 +93325,7 @@ entities:
pos: -27.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14003
components:
- type: Transform
@@ -91467,7 +93333,7 @@ entities:
pos: -120.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14004
components:
- type: Transform
@@ -91475,7 +93341,7 @@ entities:
pos: -118.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14005
components:
- type: Transform
@@ -91483,7 +93349,7 @@ entities:
pos: -23.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14006
components:
- type: Transform
@@ -91503,7 +93369,7 @@ entities:
pos: -96.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14009
components:
- type: Transform
@@ -91511,14 +93377,14 @@ entities:
pos: -102.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14010
components:
- type: Transform
pos: -103.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14011
components:
- type: Transform
@@ -91547,7 +93413,7 @@ entities:
pos: -136.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14015
components:
- type: Transform
@@ -91561,7 +93427,7 @@ entities:
pos: -135.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14017
components:
- type: Transform
@@ -91569,7 +93435,7 @@ entities:
pos: -141.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14018
components:
- type: Transform
@@ -91577,7 +93443,7 @@ entities:
pos: -141.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14019
components:
- type: Transform
@@ -91585,7 +93451,7 @@ entities:
pos: -141.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14020
components:
- type: Transform
@@ -91593,7 +93459,7 @@ entities:
pos: -74.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14021
components:
- type: Transform
@@ -91609,7 +93475,7 @@ entities:
pos: -30.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14023
components:
- type: Transform
@@ -91738,7 +93604,7 @@ entities:
pos: -145.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14043
components:
- type: Transform
@@ -91759,7 +93625,7 @@ entities:
pos: -100.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14046
components:
- type: Transform
@@ -91772,7 +93638,7 @@ entities:
pos: -137.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14048
components:
- type: Transform
@@ -91788,7 +93654,7 @@ entities:
pos: -74.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14050
components:
- type: Transform
@@ -91796,7 +93662,7 @@ entities:
pos: -94.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14051
components:
- type: Transform
@@ -91812,7 +93678,7 @@ entities:
pos: -131.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14053
components:
- type: Transform
@@ -91825,7 +93691,7 @@ entities:
pos: -151.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14055
components:
- type: Transform
@@ -91924,7 +93790,7 @@ entities:
pos: -105.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14071
components:
- type: Transform
@@ -91932,7 +93798,7 @@ entities:
pos: -118.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14072
components:
- type: Transform
@@ -91940,7 +93806,7 @@ entities:
pos: -105.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14073
components:
- type: Transform
@@ -91956,7 +93822,7 @@ entities:
pos: -118.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14075
components:
- type: Transform
@@ -91964,7 +93830,7 @@ entities:
pos: -118.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14076
components:
- type: Transform
@@ -91977,7 +93843,7 @@ entities:
pos: -104.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14078
components:
- type: Transform
@@ -91985,7 +93851,7 @@ entities:
pos: -104.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14079
components:
- type: Transform
@@ -91993,7 +93859,7 @@ entities:
pos: -96.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14080
components:
- type: Transform
@@ -92001,7 +93867,7 @@ entities:
pos: -104.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14081
components:
- type: Transform
@@ -92020,7 +93886,7 @@ entities:
pos: -103.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14084
components:
- type: Transform
@@ -92028,7 +93894,7 @@ entities:
pos: -17.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14085
components:
- type: Transform
@@ -92060,7 +93926,7 @@ entities:
pos: -127.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14089
components:
- type: Transform
@@ -92068,7 +93934,7 @@ entities:
pos: -128.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14090
components:
- type: Transform
@@ -92076,7 +93942,7 @@ entities:
pos: -104.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14091
components:
- type: Transform
@@ -92084,7 +93950,7 @@ entities:
pos: -35.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14092
components:
- type: Transform
@@ -92092,28 +93958,28 @@ entities:
pos: -101.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14093
components:
- type: Transform
pos: -18.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14094
components:
- type: Transform
pos: -18.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14095
components:
- type: Transform
pos: -18.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14096
components:
- type: Transform
@@ -92121,7 +93987,7 @@ entities:
pos: -100.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14097
components:
- type: Transform
@@ -92129,7 +93995,7 @@ entities:
pos: -102.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14098
components:
- type: Transform
@@ -92137,7 +94003,7 @@ entities:
pos: -103.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14099
components:
- type: Transform
@@ -92145,28 +94011,28 @@ entities:
pos: -81.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14100
components:
- type: Transform
pos: -18.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14101
components:
- type: Transform
pos: -18.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14102
components:
- type: Transform
pos: -18.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14103
components:
- type: Transform
@@ -92174,14 +94040,14 @@ entities:
pos: -116.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14104
components:
- type: Transform
pos: -15.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14105
components:
- type: Transform
@@ -92189,7 +94055,7 @@ entities:
pos: -19.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14106
components:
- type: Transform
@@ -92197,7 +94063,7 @@ entities:
pos: -141.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14107
components:
- type: Transform
@@ -92221,7 +94087,7 @@ entities:
pos: -104.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14110
components:
- type: Transform
@@ -92229,7 +94095,7 @@ entities:
pos: -43.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14111
components:
- type: Transform
@@ -92237,7 +94103,7 @@ entities:
pos: -55.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14112
components:
- type: Transform
@@ -92245,7 +94111,7 @@ entities:
pos: -57.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14113
components:
- type: Transform
@@ -92253,7 +94119,7 @@ entities:
pos: -56.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14114
components:
- type: Transform
@@ -92261,7 +94127,7 @@ entities:
pos: -41.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14115
components:
- type: Transform
@@ -92269,7 +94135,7 @@ entities:
pos: -34.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14116
components:
- type: Transform
@@ -92277,14 +94143,14 @@ entities:
pos: -54.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14117
components:
- type: Transform
pos: -53.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14118
components:
- type: Transform
@@ -92292,7 +94158,7 @@ entities:
pos: -99.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14119
components:
- type: Transform
@@ -92300,7 +94166,7 @@ entities:
pos: -41.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14120
components:
- type: Transform
@@ -92308,7 +94174,7 @@ entities:
pos: -33.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14121
components:
- type: Transform
@@ -92316,7 +94182,7 @@ entities:
pos: -41.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14122
components:
- type: Transform
@@ -92324,7 +94190,7 @@ entities:
pos: -41.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14123
components:
- type: Transform
@@ -92332,7 +94198,7 @@ entities:
pos: -41.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14124
components:
- type: Transform
@@ -92358,7 +94224,7 @@ entities:
pos: -19.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14128
components:
- type: Transform
@@ -92366,7 +94232,7 @@ entities:
pos: -31.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14129
components:
- type: Transform
@@ -92374,7 +94240,7 @@ entities:
pos: -30.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14130
components:
- type: Transform
@@ -92382,7 +94248,7 @@ entities:
pos: -70.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14131
components:
- type: Transform
@@ -92390,7 +94256,7 @@ entities:
pos: -99.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14132
components:
- type: Transform
@@ -92398,7 +94264,7 @@ entities:
pos: -97.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14133
components:
- type: Transform
@@ -92406,7 +94272,7 @@ entities:
pos: -39.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14134
components:
- type: Transform
@@ -92414,7 +94280,7 @@ entities:
pos: -130.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14135
components:
- type: Transform
@@ -92422,7 +94288,7 @@ entities:
pos: -43.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14136
components:
- type: Transform
@@ -92430,7 +94296,7 @@ entities:
pos: -33.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14137
components:
- type: Transform
@@ -92438,7 +94304,7 @@ entities:
pos: -130.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14138
components:
- type: Transform
@@ -92446,7 +94312,7 @@ entities:
pos: -30.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14139
components:
- type: Transform
@@ -92454,7 +94320,7 @@ entities:
pos: -31.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14140
components:
- type: Transform
@@ -92462,7 +94328,7 @@ entities:
pos: -32.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14141
components:
- type: Transform
@@ -92470,7 +94336,7 @@ entities:
pos: -28.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14142
components:
- type: Transform
@@ -92478,7 +94344,7 @@ entities:
pos: -28.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14143
components:
- type: Transform
@@ -92486,7 +94352,7 @@ entities:
pos: -30.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14144
components:
- type: Transform
@@ -92494,7 +94360,7 @@ entities:
pos: -66.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14145
components:
- type: Transform
@@ -92502,7 +94368,7 @@ entities:
pos: -30.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14146
components:
- type: Transform
@@ -92510,7 +94376,7 @@ entities:
pos: -105.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14147
components:
- type: Transform
@@ -92560,7 +94426,7 @@ entities:
pos: -75.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14155
components:
- type: Transform
@@ -92584,14 +94450,14 @@ entities:
pos: -96.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14159
components:
- type: Transform
pos: -104.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14160
components:
- type: Transform
@@ -92599,7 +94465,7 @@ entities:
pos: -97.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14161
components:
- type: Transform
@@ -92607,21 +94473,21 @@ entities:
pos: -101.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14162
components:
- type: Transform
pos: -24.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14163
components:
- type: Transform
pos: -103.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14164
components:
- type: Transform
@@ -92629,14 +94495,14 @@ entities:
pos: -28.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14165
components:
- type: Transform
pos: -67.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14166
components:
- type: Transform
@@ -92644,7 +94510,7 @@ entities:
pos: -36.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14167
components:
- type: Transform
@@ -92656,7 +94522,7 @@ entities:
pos: -103.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14169
components:
- type: Transform
@@ -92664,7 +94530,7 @@ entities:
pos: -40.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14170
components:
- type: Transform
@@ -92672,14 +94538,14 @@ entities:
pos: -101.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14171
components:
- type: Transform
pos: -45.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14172
components:
- type: Transform
@@ -92687,7 +94553,7 @@ entities:
pos: -42.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14173
components:
- type: Transform
@@ -92695,21 +94561,21 @@ entities:
pos: -46.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14174
components:
- type: Transform
pos: -57.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14175
components:
- type: Transform
pos: -103.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14176
components:
- type: Transform
@@ -92717,7 +94583,7 @@ entities:
pos: -94.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14177
components:
- type: Transform
@@ -92725,7 +94591,7 @@ entities:
pos: -105.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14178
components:
- type: Transform
@@ -92733,7 +94599,7 @@ entities:
pos: -72.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14179
components:
- type: Transform
@@ -92759,7 +94625,7 @@ entities:
pos: -72.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14183
components:
- type: Transform
@@ -92767,7 +94633,7 @@ entities:
pos: -73.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14184
components:
- type: Transform
@@ -92780,14 +94646,14 @@ entities:
pos: -87.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14186
components:
- type: Transform
pos: -87.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14187
components:
- type: Transform
@@ -92795,14 +94661,14 @@ entities:
pos: -133.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14188
components:
- type: Transform
pos: -103.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14189
components:
- type: Transform
@@ -92810,7 +94676,7 @@ entities:
pos: -115.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14190
components:
- type: Transform
@@ -92818,7 +94684,7 @@ entities:
pos: -129.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14191
components:
- type: Transform
@@ -92826,14 +94692,14 @@ entities:
pos: -106.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14192
components:
- type: Transform
pos: -134.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14193
components:
- type: Transform
@@ -92841,7 +94707,7 @@ entities:
pos: -120.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14194
components:
- type: Transform
@@ -92849,7 +94715,7 @@ entities:
pos: -101.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14195
components:
- type: Transform
@@ -92857,7 +94723,7 @@ entities:
pos: -95.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14196
components:
- type: Transform
@@ -92865,7 +94731,7 @@ entities:
pos: -72.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14197
components:
- type: Transform
@@ -92873,7 +94739,7 @@ entities:
pos: -72.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14198
components:
- type: Transform
@@ -92881,7 +94747,7 @@ entities:
pos: -68.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14199
components:
- type: Transform
@@ -92896,7 +94762,7 @@ entities:
pos: -67.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14201
components:
- type: Transform
@@ -92904,7 +94770,7 @@ entities:
pos: -15.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14202
components:
- type: Transform
@@ -92920,21 +94786,21 @@ entities:
pos: -20.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14204
components:
- type: Transform
pos: -120.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14205
components:
- type: Transform
pos: -104.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14206
components:
- type: Transform
@@ -92942,7 +94808,7 @@ entities:
pos: -28.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14207
components:
- type: Transform
@@ -92950,7 +94816,7 @@ entities:
pos: -121.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14208
components:
- type: Transform
@@ -92958,7 +94824,7 @@ entities:
pos: -66.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14209
components:
- type: Transform
@@ -92970,7 +94836,7 @@ entities:
pos: -45.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14211
components:
- type: Transform
@@ -92978,7 +94844,7 @@ entities:
pos: -99.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14212
components:
- type: Transform
@@ -92992,7 +94858,7 @@ entities:
pos: -44.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14214
components:
- type: Transform
@@ -93000,7 +94866,7 @@ entities:
pos: -45.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14215
components:
- type: Transform
@@ -93034,7 +94900,7 @@ entities:
pos: -41.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14220
components:
- type: Transform
@@ -93042,7 +94908,7 @@ entities:
pos: -41.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14221
components:
- type: Transform
@@ -93056,7 +94922,7 @@ entities:
pos: -32.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14223
components:
- type: Transform
@@ -93064,7 +94930,7 @@ entities:
pos: -41.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14224
components:
- type: Transform
@@ -93072,7 +94938,7 @@ entities:
pos: -32.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14225
components:
- type: Transform
@@ -93080,7 +94946,7 @@ entities:
pos: -100.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14226
components:
- type: Transform
@@ -93088,7 +94954,7 @@ entities:
pos: -36.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14227
components:
- type: Transform
@@ -93096,7 +94962,7 @@ entities:
pos: -41.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14228
components:
- type: Transform
@@ -93104,7 +94970,7 @@ entities:
pos: -41.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14229
components:
- type: Transform
@@ -93138,7 +95004,7 @@ entities:
pos: -41.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14234
components:
- type: Transform
@@ -93146,7 +95012,7 @@ entities:
pos: -20.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14235
components:
- type: Transform
@@ -93154,7 +95020,7 @@ entities:
pos: -21.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14236
components:
- type: Transform
@@ -93162,7 +95028,7 @@ entities:
pos: -25.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14237
components:
- type: Transform
@@ -93170,7 +95036,7 @@ entities:
pos: -27.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14238
components:
- type: Transform
@@ -93178,28 +95044,28 @@ entities:
pos: -38.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14239
components:
- type: Transform
pos: -93.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14240
components:
- type: Transform
pos: -93.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14241
components:
- type: Transform
pos: -93.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14242
components:
- type: Transform
@@ -93207,7 +95073,7 @@ entities:
pos: -18.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14243
components:
- type: Transform
@@ -93215,7 +95081,7 @@ entities:
pos: -60.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14244
components:
- type: Transform
@@ -93223,14 +95089,14 @@ entities:
pos: -65.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14245
components:
- type: Transform
pos: -29.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14246
components:
- type: Transform
@@ -93238,7 +95104,7 @@ entities:
pos: -88.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14247
components:
- type: Transform
@@ -93246,7 +95112,7 @@ entities:
pos: -73.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14248
components:
- type: Transform
@@ -93254,21 +95120,21 @@ entities:
pos: -133.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14249
components:
- type: Transform
pos: -29.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14250
components:
- type: Transform
pos: -23.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14251
components:
- type: Transform
@@ -93276,7 +95142,7 @@ entities:
pos: -66.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14252
components:
- type: Transform
@@ -93284,7 +95150,7 @@ entities:
pos: -66.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14253
components:
- type: Transform
@@ -93292,7 +95158,7 @@ entities:
pos: -66.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14254
components:
- type: Transform
@@ -93300,7 +95166,7 @@ entities:
pos: -66.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14255
components:
- type: Transform
@@ -93308,7 +95174,7 @@ entities:
pos: -66.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14256
components:
- type: Transform
@@ -93316,7 +95182,7 @@ entities:
pos: -67.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14257
components:
- type: Transform
@@ -93324,7 +95190,7 @@ entities:
pos: -67.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14258
components:
- type: Transform
@@ -93332,7 +95198,7 @@ entities:
pos: -67.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14259
components:
- type: Transform
@@ -93340,7 +95206,7 @@ entities:
pos: -67.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14260
components:
- type: Transform
@@ -93348,7 +95214,7 @@ entities:
pos: -67.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14261
components:
- type: Transform
@@ -93356,7 +95222,7 @@ entities:
pos: -67.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14262
components:
- type: Transform
@@ -93364,7 +95230,7 @@ entities:
pos: -66.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14263
components:
- type: Transform
@@ -93372,7 +95238,7 @@ entities:
pos: -66.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14264
components:
- type: Transform
@@ -93380,7 +95246,7 @@ entities:
pos: -66.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14265
components:
- type: Transform
@@ -93388,7 +95254,7 @@ entities:
pos: -67.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14266
components:
- type: Transform
@@ -93396,7 +95262,7 @@ entities:
pos: -67.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14267
components:
- type: Transform
@@ -93404,7 +95270,7 @@ entities:
pos: -68.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14268
components:
- type: Transform
@@ -93412,7 +95278,7 @@ entities:
pos: -70.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14269
components:
- type: Transform
@@ -93420,7 +95286,7 @@ entities:
pos: -71.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14270
components:
- type: Transform
@@ -93428,7 +95294,7 @@ entities:
pos: -72.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14271
components:
- type: Transform
@@ -93436,7 +95302,7 @@ entities:
pos: -69.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14272
components:
- type: Transform
@@ -93444,7 +95310,7 @@ entities:
pos: -68.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14273
components:
- type: Transform
@@ -93452,7 +95318,7 @@ entities:
pos: -69.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14274
components:
- type: Transform
@@ -93460,7 +95326,7 @@ entities:
pos: -71.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14275
components:
- type: Transform
@@ -93468,7 +95334,7 @@ entities:
pos: -72.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14276
components:
- type: Transform
@@ -93476,7 +95342,7 @@ entities:
pos: -70.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14277
components:
- type: Transform
@@ -93484,14 +95350,14 @@ entities:
pos: -130.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14278
components:
- type: Transform
pos: -67.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14279
components:
- type: Transform
@@ -93499,7 +95365,7 @@ entities:
pos: -72.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14280
components:
- type: Transform
@@ -93507,7 +95373,7 @@ entities:
pos: -72.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14281
components:
- type: Transform
@@ -93515,7 +95381,7 @@ entities:
pos: -127.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14282
components:
- type: Transform
@@ -93523,21 +95389,21 @@ entities:
pos: -133.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14283
components:
- type: Transform
pos: -67.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14284
components:
- type: Transform
pos: -76.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14285
components:
- type: Transform
@@ -93545,7 +95411,7 @@ entities:
pos: -74.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14286
components:
- type: Transform
@@ -93559,7 +95425,7 @@ entities:
pos: -66.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14288
components:
- type: Transform
@@ -93567,7 +95433,7 @@ entities:
pos: -67.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14289
components:
- type: Transform
@@ -93575,7 +95441,7 @@ entities:
pos: -63.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14290
components:
- type: Transform
@@ -93583,7 +95449,7 @@ entities:
pos: -56.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14291
components:
- type: Transform
@@ -93591,7 +95457,7 @@ entities:
pos: -65.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14292
components:
- type: Transform
@@ -93599,7 +95465,7 @@ entities:
pos: -64.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14293
components:
- type: Transform
@@ -93607,7 +95473,7 @@ entities:
pos: -62.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14294
components:
- type: Transform
@@ -93615,7 +95481,7 @@ entities:
pos: -61.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14295
components:
- type: Transform
@@ -93623,7 +95489,7 @@ entities:
pos: -59.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14296
components:
- type: Transform
@@ -93631,7 +95497,7 @@ entities:
pos: -58.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14297
components:
- type: Transform
@@ -93639,7 +95505,7 @@ entities:
pos: -57.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14298
components:
- type: Transform
@@ -93647,7 +95513,7 @@ entities:
pos: -67.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14299
components:
- type: Transform
@@ -93655,7 +95521,7 @@ entities:
pos: -67.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14300
components:
- type: Transform
@@ -93663,7 +95529,7 @@ entities:
pos: -67.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14301
components:
- type: Transform
@@ -93671,7 +95537,7 @@ entities:
pos: -66.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14302
components:
- type: Transform
@@ -93679,7 +95545,7 @@ entities:
pos: -64.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14303
components:
- type: Transform
@@ -93687,7 +95553,7 @@ entities:
pos: -63.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14304
components:
- type: Transform
@@ -93695,28 +95561,28 @@ entities:
pos: -65.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14305
components:
- type: Transform
pos: -62.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14306
components:
- type: Transform
pos: -62.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14307
components:
- type: Transform
pos: -62.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14308
components:
- type: Transform
@@ -93724,7 +95590,7 @@ entities:
pos: -61.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14309
components:
- type: Transform
@@ -93732,7 +95598,7 @@ entities:
pos: -60.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14310
components:
- type: Transform
@@ -93740,7 +95606,7 @@ entities:
pos: -58.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14311
components:
- type: Transform
@@ -93748,7 +95614,7 @@ entities:
pos: -57.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14312
components:
- type: Transform
@@ -93756,7 +95622,7 @@ entities:
pos: -59.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14313
components:
- type: Transform
@@ -93764,7 +95630,7 @@ entities:
pos: -56.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14314
components:
- type: Transform
@@ -93772,7 +95638,7 @@ entities:
pos: -56.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14315
components:
- type: Transform
@@ -93780,7 +95646,7 @@ entities:
pos: -56.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14316
components:
- type: Transform
@@ -93788,7 +95654,7 @@ entities:
pos: -56.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14317
components:
- type: Transform
@@ -93796,56 +95662,56 @@ entities:
pos: -56.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14318
components:
- type: Transform
pos: -103.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14319
components:
- type: Transform
pos: -103.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14320
components:
- type: Transform
pos: -103.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14321
components:
- type: Transform
pos: -103.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14322
components:
- type: Transform
pos: -103.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14323
components:
- type: Transform
pos: -103.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14324
components:
- type: Transform
pos: -103.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14325
components:
- type: Transform
@@ -93853,28 +95719,28 @@ entities:
pos: -113.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14326
components:
- type: Transform
pos: -29.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14327
components:
- type: Transform
pos: -29.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14328
components:
- type: Transform
pos: -29.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14329
components:
- type: Transform
@@ -93882,7 +95748,7 @@ entities:
pos: -18.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14330
components:
- type: Transform
@@ -93890,7 +95756,7 @@ entities:
pos: -63.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14331
components:
- type: Transform
@@ -93898,7 +95764,7 @@ entities:
pos: -65.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14332
components:
- type: Transform
@@ -93906,7 +95772,7 @@ entities:
pos: -66.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14333
components:
- type: Transform
@@ -93914,7 +95780,7 @@ entities:
pos: -64.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14334
components:
- type: Transform
@@ -93922,7 +95788,7 @@ entities:
pos: -61.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14335
components:
- type: Transform
@@ -93930,7 +95796,7 @@ entities:
pos: -62.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14336
components:
- type: Transform
@@ -93938,7 +95804,7 @@ entities:
pos: -64.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14337
components:
- type: Transform
@@ -93946,7 +95812,7 @@ entities:
pos: -65.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14338
components:
- type: Transform
@@ -93954,7 +95820,7 @@ entities:
pos: -63.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14339
components:
- type: Transform
@@ -93962,7 +95828,7 @@ entities:
pos: -59.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14340
components:
- type: Transform
@@ -93970,7 +95836,7 @@ entities:
pos: -58.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14341
components:
- type: Transform
@@ -93978,21 +95844,21 @@ entities:
pos: -57.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14342
components:
- type: Transform
pos: -55.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14343
components:
- type: Transform
pos: -55.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14344
components:
- type: Transform
@@ -94000,7 +95866,7 @@ entities:
pos: -56.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14345
components:
- type: Transform
@@ -94008,7 +95874,7 @@ entities:
pos: -55.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14346
components:
- type: Transform
@@ -94016,7 +95882,7 @@ entities:
pos: -55.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14347
components:
- type: Transform
@@ -94024,7 +95890,7 @@ entities:
pos: -55.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14348
components:
- type: Transform
@@ -94032,7 +95898,7 @@ entities:
pos: -55.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14349
components:
- type: Transform
@@ -94040,7 +95906,7 @@ entities:
pos: -55.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14350
components:
- type: Transform
@@ -94048,7 +95914,7 @@ entities:
pos: -55.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14351
components:
- type: Transform
@@ -94056,7 +95922,7 @@ entities:
pos: -33.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14352
components:
- type: Transform
@@ -94064,7 +95930,7 @@ entities:
pos: -61.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14353
components:
- type: Transform
@@ -94072,7 +95938,7 @@ entities:
pos: -59.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14354
components:
- type: Transform
@@ -94080,7 +95946,7 @@ entities:
pos: -58.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14355
components:
- type: Transform
@@ -94088,7 +95954,7 @@ entities:
pos: -57.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14356
components:
- type: Transform
@@ -94096,7 +95962,7 @@ entities:
pos: -60.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14357
components:
- type: Transform
@@ -94104,7 +95970,7 @@ entities:
pos: -56.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14358
components:
- type: Transform
@@ -94112,7 +95978,7 @@ entities:
pos: -56.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14359
components:
- type: Transform
@@ -94120,7 +95986,7 @@ entities:
pos: -56.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14360
components:
- type: Transform
@@ -94128,7 +95994,7 @@ entities:
pos: -55.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14361
components:
- type: Transform
@@ -94136,7 +96002,7 @@ entities:
pos: -54.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14362
components:
- type: Transform
@@ -94144,7 +96010,7 @@ entities:
pos: -52.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14363
components:
- type: Transform
@@ -94152,7 +96018,7 @@ entities:
pos: -53.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14364
components:
- type: Transform
@@ -94160,7 +96026,7 @@ entities:
pos: -54.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14365
components:
- type: Transform
@@ -94168,7 +96034,7 @@ entities:
pos: -53.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14366
components:
- type: Transform
@@ -94176,7 +96042,7 @@ entities:
pos: -52.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14367
components:
- type: Transform
@@ -94184,7 +96050,7 @@ entities:
pos: -46.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14368
components:
- type: Transform
@@ -94192,7 +96058,7 @@ entities:
pos: -47.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14369
components:
- type: Transform
@@ -94200,7 +96066,7 @@ entities:
pos: -49.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14370
components:
- type: Transform
@@ -94208,7 +96074,7 @@ entities:
pos: -50.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14371
components:
- type: Transform
@@ -94216,7 +96082,7 @@ entities:
pos: -48.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14372
components:
- type: Transform
@@ -94224,7 +96090,7 @@ entities:
pos: -50.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14373
components:
- type: Transform
@@ -94232,7 +96098,7 @@ entities:
pos: -48.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14374
components:
- type: Transform
@@ -94240,7 +96106,7 @@ entities:
pos: -47.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14375
components:
- type: Transform
@@ -94248,7 +96114,7 @@ entities:
pos: -49.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14376
components:
- type: Transform
@@ -94256,7 +96122,7 @@ entities:
pos: -45.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14377
components:
- type: Transform
@@ -94264,7 +96130,7 @@ entities:
pos: -46.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14378
components:
- type: Transform
@@ -94272,7 +96138,7 @@ entities:
pos: -46.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14379
components:
- type: Transform
@@ -94280,7 +96146,7 @@ entities:
pos: -45.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14380
components:
- type: Transform
@@ -94288,7 +96154,7 @@ entities:
pos: -45.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14381
components:
- type: Transform
@@ -94296,7 +96162,7 @@ entities:
pos: -45.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14382
components:
- type: Transform
@@ -94304,7 +96170,7 @@ entities:
pos: -44.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14383
components:
- type: Transform
@@ -94312,7 +96178,7 @@ entities:
pos: -43.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14384
components:
- type: Transform
@@ -94320,14 +96186,14 @@ entities:
pos: -43.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14385
components:
- type: Transform
pos: -23.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14386
components:
- type: Transform
@@ -94335,7 +96201,7 @@ entities:
pos: -43.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14387
components:
- type: Transform
@@ -94343,7 +96209,7 @@ entities:
pos: -42.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14388
components:
- type: Transform
@@ -94351,7 +96217,7 @@ entities:
pos: -41.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14389
components:
- type: Transform
@@ -94359,7 +96225,7 @@ entities:
pos: -40.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14390
components:
- type: Transform
@@ -94367,7 +96233,7 @@ entities:
pos: -40.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14391
components:
- type: Transform
@@ -94375,7 +96241,7 @@ entities:
pos: -40.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14392
components:
- type: Transform
@@ -94383,7 +96249,7 @@ entities:
pos: -40.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14393
components:
- type: Transform
@@ -94391,7 +96257,7 @@ entities:
pos: -40.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14394
components:
- type: Transform
@@ -94399,7 +96265,7 @@ entities:
pos: -40.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14395
components:
- type: Transform
@@ -94407,7 +96273,7 @@ entities:
pos: -40.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14396
components:
- type: Transform
@@ -94415,21 +96281,21 @@ entities:
pos: -40.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14397
components:
- type: Transform
pos: -42.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14398
components:
- type: Transform
pos: -42.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14399
components:
- type: Transform
@@ -94437,7 +96303,7 @@ entities:
pos: -41.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14400
components:
- type: Transform
@@ -94445,7 +96311,7 @@ entities:
pos: -40.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14401
components:
- type: Transform
@@ -94453,7 +96319,7 @@ entities:
pos: -39.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14402
components:
- type: Transform
@@ -94461,7 +96327,7 @@ entities:
pos: -39.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14403
components:
- type: Transform
@@ -94469,7 +96335,7 @@ entities:
pos: -24.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14404
components:
- type: Transform
@@ -94477,14 +96343,14 @@ entities:
pos: -39.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14405
components:
- type: Transform
pos: -94.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14406
components:
- type: Transform
@@ -94492,7 +96358,7 @@ entities:
pos: -39.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14407
components:
- type: Transform
@@ -94500,7 +96366,7 @@ entities:
pos: -39.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14408
components:
- type: Transform
@@ -94508,7 +96374,7 @@ entities:
pos: -39.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14409
components:
- type: Transform
@@ -94516,7 +96382,7 @@ entities:
pos: -55.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14410
components:
- type: Transform
@@ -94524,7 +96390,7 @@ entities:
pos: -53.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14411
components:
- type: Transform
@@ -94532,7 +96398,7 @@ entities:
pos: -54.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14412
components:
- type: Transform
@@ -94540,7 +96406,7 @@ entities:
pos: -50.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14413
components:
- type: Transform
@@ -94548,7 +96414,7 @@ entities:
pos: -49.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14414
components:
- type: Transform
@@ -94556,7 +96422,7 @@ entities:
pos: -47.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14415
components:
- type: Transform
@@ -94564,7 +96430,7 @@ entities:
pos: -46.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14416
components:
- type: Transform
@@ -94572,21 +96438,21 @@ entities:
pos: -48.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14417
components:
- type: Transform
pos: -43.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14418
components:
- type: Transform
pos: -43.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14419
components:
- type: Transform
@@ -94594,7 +96460,7 @@ entities:
pos: -44.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14420
components:
- type: Transform
@@ -94602,7 +96468,7 @@ entities:
pos: -54.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14421
components:
- type: Transform
@@ -94610,7 +96476,7 @@ entities:
pos: -53.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14422
components:
- type: Transform
@@ -94618,7 +96484,7 @@ entities:
pos: -51.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14423
components:
- type: Transform
@@ -94626,7 +96492,7 @@ entities:
pos: -50.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14424
components:
- type: Transform
@@ -94634,7 +96500,7 @@ entities:
pos: -52.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14425
components:
- type: Transform
@@ -94642,7 +96508,7 @@ entities:
pos: -47.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14426
components:
- type: Transform
@@ -94650,7 +96516,7 @@ entities:
pos: -45.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14427
components:
- type: Transform
@@ -94658,7 +96524,7 @@ entities:
pos: -46.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14428
components:
- type: Transform
@@ -94666,21 +96532,21 @@ entities:
pos: -43.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14429
components:
- type: Transform
pos: -44.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14430
components:
- type: Transform
pos: -44.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14431
components:
- type: Transform
@@ -94688,7 +96554,7 @@ entities:
pos: -43.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14432
components:
- type: Transform
@@ -94696,7 +96562,7 @@ entities:
pos: -40.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14433
components:
- type: Transform
@@ -94704,7 +96570,7 @@ entities:
pos: -41.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14434
components:
- type: Transform
@@ -94712,77 +96578,77 @@ entities:
pos: -24.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14435
components:
- type: Transform
pos: -75.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14436
components:
- type: Transform
pos: -125.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14437
components:
- type: Transform
pos: -75.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14438
components:
- type: Transform
pos: -75.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14439
components:
- type: Transform
pos: -75.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14440
components:
- type: Transform
pos: -74.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14441
components:
- type: Transform
pos: -74.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14442
components:
- type: Transform
pos: -74.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14443
components:
- type: Transform
pos: -74.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14444
components:
- type: Transform
pos: -74.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14445
components:
- type: Transform
@@ -94790,7 +96656,7 @@ entities:
pos: -18.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14446
components:
- type: Transform
@@ -94798,7 +96664,7 @@ entities:
pos: -76.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14447
components:
- type: Transform
@@ -94806,7 +96672,7 @@ entities:
pos: -78.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14448
components:
- type: Transform
@@ -94814,7 +96680,7 @@ entities:
pos: -43.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14449
components:
- type: Transform
@@ -94822,7 +96688,7 @@ entities:
pos: -49.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14450
components:
- type: Transform
@@ -94830,7 +96696,7 @@ entities:
pos: -77.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14451
components:
- type: Transform
@@ -94838,7 +96704,7 @@ entities:
pos: -76.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14452
components:
- type: Transform
@@ -94846,7 +96712,7 @@ entities:
pos: -77.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14453
components:
- type: Transform
@@ -94854,14 +96720,14 @@ entities:
pos: -81.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14454
components:
- type: Transform
pos: -103.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14455
components:
- type: Transform
@@ -94869,7 +96735,7 @@ entities:
pos: -78.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14456
components:
- type: Transform
@@ -94877,7 +96743,7 @@ entities:
pos: -69.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14457
components:
- type: Transform
@@ -94885,14 +96751,14 @@ entities:
pos: -79.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14458
components:
- type: Transform
pos: -103.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14459
components:
- type: Transform
@@ -94900,7 +96766,7 @@ entities:
pos: -35.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14460
components:
- type: Transform
@@ -94908,7 +96774,7 @@ entities:
pos: -79.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14461
components:
- type: Transform
@@ -94916,7 +96782,7 @@ entities:
pos: -79.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14462
components:
- type: Transform
@@ -94924,7 +96790,7 @@ entities:
pos: -79.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14463
components:
- type: Transform
@@ -94932,7 +96798,7 @@ entities:
pos: -79.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14464
components:
- type: Transform
@@ -94940,7 +96806,7 @@ entities:
pos: -79.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14465
components:
- type: Transform
@@ -94948,7 +96814,7 @@ entities:
pos: -79.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14466
components:
- type: Transform
@@ -94956,7 +96822,7 @@ entities:
pos: -79.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14467
components:
- type: Transform
@@ -94964,7 +96830,7 @@ entities:
pos: -79.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14468
components:
- type: Transform
@@ -94972,7 +96838,7 @@ entities:
pos: -79.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14469
components:
- type: Transform
@@ -94980,7 +96846,7 @@ entities:
pos: -80.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14470
components:
- type: Transform
@@ -94988,7 +96854,7 @@ entities:
pos: -80.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14471
components:
- type: Transform
@@ -94996,7 +96862,7 @@ entities:
pos: -80.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14472
components:
- type: Transform
@@ -95004,7 +96870,7 @@ entities:
pos: -80.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14473
components:
- type: Transform
@@ -95012,7 +96878,7 @@ entities:
pos: -80.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14474
components:
- type: Transform
@@ -95020,7 +96886,7 @@ entities:
pos: -80.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14475
components:
- type: Transform
@@ -95028,7 +96894,7 @@ entities:
pos: -80.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14476
components:
- type: Transform
@@ -95036,7 +96902,7 @@ entities:
pos: -80.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14477
components:
- type: Transform
@@ -95044,7 +96910,7 @@ entities:
pos: -80.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14478
components:
- type: Transform
@@ -95052,7 +96918,7 @@ entities:
pos: -80.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14479
components:
- type: Transform
@@ -95060,7 +96926,7 @@ entities:
pos: -80.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14480
components:
- type: Transform
@@ -95068,7 +96934,7 @@ entities:
pos: -80.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14481
components:
- type: Transform
@@ -95076,7 +96942,7 @@ entities:
pos: -79.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14482
components:
- type: Transform
@@ -95084,7 +96950,7 @@ entities:
pos: -79.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14483
components:
- type: Transform
@@ -95092,7 +96958,7 @@ entities:
pos: -80.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14484
components:
- type: Transform
@@ -95100,7 +96966,7 @@ entities:
pos: -79.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14485
components:
- type: Transform
@@ -95108,7 +96974,7 @@ entities:
pos: -130.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14486
components:
- type: Transform
@@ -95116,7 +96982,7 @@ entities:
pos: -82.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14487
components:
- type: Transform
@@ -95124,7 +96990,7 @@ entities:
pos: -83.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14488
components:
- type: Transform
@@ -95132,7 +96998,7 @@ entities:
pos: -81.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14489
components:
- type: Transform
@@ -95140,7 +97006,7 @@ entities:
pos: -81.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14490
components:
- type: Transform
@@ -95148,7 +97014,7 @@ entities:
pos: -82.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14491
components:
- type: Transform
@@ -95156,14 +97022,14 @@ entities:
pos: -83.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14492
components:
- type: Transform
pos: -80.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14493
components:
- type: Transform
@@ -95171,7 +97037,7 @@ entities:
pos: -85.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14494
components:
- type: Transform
@@ -95179,7 +97045,7 @@ entities:
pos: -85.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14495
components:
- type: Transform
@@ -95187,7 +97053,7 @@ entities:
pos: -85.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14496
components:
- type: Transform
@@ -95195,7 +97061,7 @@ entities:
pos: -85.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14497
components:
- type: Transform
@@ -95203,7 +97069,7 @@ entities:
pos: -85.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14498
components:
- type: Transform
@@ -95211,7 +97077,7 @@ entities:
pos: -85.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14499
components:
- type: Transform
@@ -95219,7 +97085,7 @@ entities:
pos: -85.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14500
components:
- type: Transform
@@ -95227,7 +97093,7 @@ entities:
pos: -84.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14501
components:
- type: Transform
@@ -95235,7 +97101,7 @@ entities:
pos: -84.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14502
components:
- type: Transform
@@ -95243,7 +97109,7 @@ entities:
pos: -84.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14503
components:
- type: Transform
@@ -95251,7 +97117,7 @@ entities:
pos: -84.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14504
components:
- type: Transform
@@ -95259,7 +97125,7 @@ entities:
pos: -86.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14505
components:
- type: Transform
@@ -95267,7 +97133,7 @@ entities:
pos: -88.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14506
components:
- type: Transform
@@ -95275,7 +97141,7 @@ entities:
pos: -89.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14507
components:
- type: Transform
@@ -95283,7 +97149,7 @@ entities:
pos: -90.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14508
components:
- type: Transform
@@ -95291,7 +97157,7 @@ entities:
pos: -91.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14509
components:
- type: Transform
@@ -95299,7 +97165,7 @@ entities:
pos: -92.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14510
components:
- type: Transform
@@ -95307,7 +97173,7 @@ entities:
pos: -93.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14511
components:
- type: Transform
@@ -95315,7 +97181,7 @@ entities:
pos: -42.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14512
components:
- type: Transform
@@ -95323,14 +97189,14 @@ entities:
pos: -87.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14513
components:
- type: Transform
pos: -104.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14514
components:
- type: Transform
@@ -95338,7 +97204,7 @@ entities:
pos: -86.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14515
components:
- type: Transform
@@ -95346,7 +97212,7 @@ entities:
pos: -87.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14516
components:
- type: Transform
@@ -95354,7 +97220,7 @@ entities:
pos: -88.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14517
components:
- type: Transform
@@ -95362,7 +97228,7 @@ entities:
pos: -90.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14518
components:
- type: Transform
@@ -95370,7 +97236,7 @@ entities:
pos: -91.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14519
components:
- type: Transform
@@ -95378,7 +97244,7 @@ entities:
pos: -92.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14520
components:
- type: Transform
@@ -95386,7 +97252,7 @@ entities:
pos: -93.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14521
components:
- type: Transform
@@ -95394,7 +97260,7 @@ entities:
pos: -89.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14522
components:
- type: Transform
@@ -95402,7 +97268,7 @@ entities:
pos: -111.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14523
components:
- type: Transform
@@ -95410,7 +97276,7 @@ entities:
pos: -57.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14524
components:
- type: Transform
@@ -95418,14 +97284,14 @@ entities:
pos: -71.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14525
components:
- type: Transform
pos: -23.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14526
components:
- type: Transform
@@ -95433,7 +97299,7 @@ entities:
pos: -15.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14527
components:
- type: Transform
@@ -95441,7 +97307,7 @@ entities:
pos: -27.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14528
components:
- type: Transform
@@ -95449,7 +97315,7 @@ entities:
pos: -41.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14529
components:
- type: Transform
@@ -95457,7 +97323,7 @@ entities:
pos: -41.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14530
components:
- type: Transform
@@ -95465,7 +97331,7 @@ entities:
pos: -41.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14531
components:
- type: Transform
@@ -95473,7 +97339,7 @@ entities:
pos: -56.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14532
components:
- type: Transform
@@ -95481,7 +97347,7 @@ entities:
pos: -61.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14533
components:
- type: Transform
@@ -95489,7 +97355,7 @@ entities:
pos: -55.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14534
components:
- type: Transform
@@ -95497,7 +97363,7 @@ entities:
pos: -55.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14535
components:
- type: Transform
@@ -95505,14 +97371,14 @@ entities:
pos: -55.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14536
components:
- type: Transform
pos: -67.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14537
components:
- type: Transform
@@ -95520,7 +97386,7 @@ entities:
pos: -66.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14538
components:
- type: Transform
@@ -95528,7 +97394,7 @@ entities:
pos: -66.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14539
components:
- type: Transform
@@ -95536,7 +97402,7 @@ entities:
pos: -56.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14540
components:
- type: Transform
@@ -95544,14 +97410,14 @@ entities:
pos: -56.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14541
components:
- type: Transform
pos: -104.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14542
components:
- type: Transform
@@ -95559,7 +97425,7 @@ entities:
pos: -55.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14543
components:
- type: Transform
@@ -95567,7 +97433,7 @@ entities:
pos: -66.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14544
components:
- type: Transform
@@ -95575,7 +97441,7 @@ entities:
pos: -137.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14545
components:
- type: Transform
@@ -95583,7 +97449,7 @@ entities:
pos: -55.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14546
components:
- type: Transform
@@ -95591,7 +97457,7 @@ entities:
pos: -103.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14547
components:
- type: Transform
@@ -95599,7 +97465,7 @@ entities:
pos: -67.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14548
components:
- type: Transform
@@ -95607,14 +97473,14 @@ entities:
pos: -56.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14549
components:
- type: Transform
pos: -40.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14550
components:
- type: Transform
@@ -95622,21 +97488,21 @@ entities:
pos: -56.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14551
components:
- type: Transform
pos: -85.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14552
components:
- type: Transform
pos: -29.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14553
components:
- type: Transform
@@ -95644,14 +97510,14 @@ entities:
pos: -84.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14554
components:
- type: Transform
pos: -85.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14555
components:
- type: Transform
@@ -95659,7 +97525,7 @@ entities:
pos: -62.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14556
components:
- type: Transform
@@ -95667,7 +97533,7 @@ entities:
pos: -62.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14557
components:
- type: Transform
@@ -95675,7 +97541,7 @@ entities:
pos: -95.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14558
components:
- type: Transform
@@ -95683,7 +97549,7 @@ entities:
pos: -100.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14559
components:
- type: Transform
@@ -95691,7 +97557,7 @@ entities:
pos: -104.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14560
components:
- type: Transform
@@ -95699,7 +97565,7 @@ entities:
pos: -95.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14561
components:
- type: Transform
@@ -95707,14 +97573,14 @@ entities:
pos: -30.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14562
components:
- type: Transform
pos: -103.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14563
components:
- type: Transform
@@ -95722,21 +97588,21 @@ entities:
pos: -87.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14564
components:
- type: Transform
pos: -103.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14565
components:
- type: Transform
pos: -103.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14566
components:
- type: Transform
@@ -95744,14 +97610,14 @@ entities:
pos: -31.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14567
components:
- type: Transform
pos: -33.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14568
components:
- type: Transform
@@ -95759,7 +97625,7 @@ entities:
pos: -43.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14569
components:
- type: Transform
@@ -95767,7 +97633,7 @@ entities:
pos: -34.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14570
components:
- type: Transform
@@ -95775,7 +97641,7 @@ entities:
pos: -96.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14571
components:
- type: Transform
@@ -95783,7 +97649,7 @@ entities:
pos: -97.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14572
components:
- type: Transform
@@ -95791,7 +97657,7 @@ entities:
pos: -94.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14573
components:
- type: Transform
@@ -95799,7 +97665,7 @@ entities:
pos: -92.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14574
components:
- type: Transform
@@ -95807,7 +97673,7 @@ entities:
pos: -28.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14575
components:
- type: Transform
@@ -95815,7 +97681,7 @@ entities:
pos: -93.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14576
components:
- type: Transform
@@ -95823,7 +97689,7 @@ entities:
pos: -90.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14577
components:
- type: Transform
@@ -95831,7 +97697,7 @@ entities:
pos: -95.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14578
components:
- type: Transform
@@ -95839,7 +97705,7 @@ entities:
pos: -39.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14579
components:
- type: Transform
@@ -95847,7 +97713,7 @@ entities:
pos: -38.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14580
components:
- type: Transform
@@ -95855,7 +97721,7 @@ entities:
pos: -37.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14581
components:
- type: Transform
@@ -95863,7 +97729,7 @@ entities:
pos: -35.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14582
components:
- type: Transform
@@ -95871,7 +97737,7 @@ entities:
pos: -36.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14583
components:
- type: Transform
@@ -95879,7 +97745,7 @@ entities:
pos: -38.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14584
components:
- type: Transform
@@ -95887,14 +97753,14 @@ entities:
pos: -37.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14585
components:
- type: Transform
pos: -25.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14586
components:
- type: Transform
@@ -95902,7 +97768,7 @@ entities:
pos: -36.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14587
components:
- type: Transform
@@ -95910,7 +97776,7 @@ entities:
pos: -34.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14588
components:
- type: Transform
@@ -95918,7 +97784,7 @@ entities:
pos: -32.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14589
components:
- type: Transform
@@ -95926,63 +97792,63 @@ entities:
pos: -31.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14590
components:
- type: Transform
pos: -33.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14591
components:
- type: Transform
pos: -33.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14592
components:
- type: Transform
pos: -33.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14593
components:
- type: Transform
pos: -33.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14594
components:
- type: Transform
pos: -33.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14595
components:
- type: Transform
pos: -33.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14596
components:
- type: Transform
pos: -33.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14597
components:
- type: Transform
pos: -33.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14598
components:
- type: Transform
@@ -95990,7 +97856,7 @@ entities:
pos: -33.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14599
components:
- type: Transform
@@ -95998,7 +97864,7 @@ entities:
pos: -26.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14600
components:
- type: Transform
@@ -96006,7 +97872,7 @@ entities:
pos: -28.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14601
components:
- type: Transform
@@ -96014,7 +97880,7 @@ entities:
pos: -27.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14602
components:
- type: Transform
@@ -96022,7 +97888,7 @@ entities:
pos: -26.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14603
components:
- type: Transform
@@ -96030,7 +97896,7 @@ entities:
pos: -32.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14604
components:
- type: Transform
@@ -96038,7 +97904,7 @@ entities:
pos: -28.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14605
components:
- type: Transform
@@ -96046,7 +97912,7 @@ entities:
pos: -20.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14606
components:
- type: Transform
@@ -96054,7 +97920,7 @@ entities:
pos: -22.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14607
components:
- type: Transform
@@ -96062,7 +97928,7 @@ entities:
pos: -21.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14608
components:
- type: Transform
@@ -96070,7 +97936,7 @@ entities:
pos: -27.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14609
components:
- type: Transform
@@ -96078,7 +97944,7 @@ entities:
pos: -26.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14610
components:
- type: Transform
@@ -96086,7 +97952,7 @@ entities:
pos: -28.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14611
components:
- type: Transform
@@ -96094,14 +97960,14 @@ entities:
pos: -29.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14612
components:
- type: Transform
pos: -45.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14613
components:
- type: Transform
@@ -96109,7 +97975,7 @@ entities:
pos: -31.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14614
components:
- type: Transform
@@ -96117,7 +97983,7 @@ entities:
pos: -32.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14615
components:
- type: Transform
@@ -96125,21 +97991,21 @@ entities:
pos: -33.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14616
components:
- type: Transform
pos: -45.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14617
components:
- type: Transform
pos: -45.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14618
components:
- type: Transform
@@ -96147,7 +98013,7 @@ entities:
pos: -65.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14619
components:
- type: Transform
@@ -96155,7 +98021,7 @@ entities:
pos: -35.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14620
components:
- type: Transform
@@ -96163,7 +98029,7 @@ entities:
pos: -36.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14621
components:
- type: Transform
@@ -96171,7 +98037,7 @@ entities:
pos: -34.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14622
components:
- type: Transform
@@ -96179,7 +98045,7 @@ entities:
pos: -34.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14623
components:
- type: Transform
@@ -96187,7 +98053,7 @@ entities:
pos: -34.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14624
components:
- type: Transform
@@ -96195,7 +98061,7 @@ entities:
pos: -34.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14625
components:
- type: Transform
@@ -96203,7 +98069,7 @@ entities:
pos: -34.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14626
components:
- type: Transform
@@ -96211,7 +98077,7 @@ entities:
pos: -34.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14627
components:
- type: Transform
@@ -96219,7 +98085,7 @@ entities:
pos: -36.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14628
components:
- type: Transform
@@ -96227,7 +98093,7 @@ entities:
pos: -35.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14629
components:
- type: Transform
@@ -96235,7 +98101,7 @@ entities:
pos: -33.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14630
components:
- type: Transform
@@ -96243,7 +98109,7 @@ entities:
pos: -32.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14631
components:
- type: Transform
@@ -96251,7 +98117,7 @@ entities:
pos: -30.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14632
components:
- type: Transform
@@ -96259,7 +98125,7 @@ entities:
pos: -31.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14633
components:
- type: Transform
@@ -96267,7 +98133,7 @@ entities:
pos: -29.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14634
components:
- type: Transform
@@ -96275,7 +98141,7 @@ entities:
pos: -29.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14635
components:
- type: Transform
@@ -96283,7 +98149,7 @@ entities:
pos: -29.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14636
components:
- type: Transform
@@ -96291,7 +98157,7 @@ entities:
pos: -32.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14637
components:
- type: Transform
@@ -96299,7 +98165,7 @@ entities:
pos: -31.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14638
components:
- type: Transform
@@ -96307,7 +98173,7 @@ entities:
pos: -30.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14639
components:
- type: Transform
@@ -96315,7 +98181,7 @@ entities:
pos: -29.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14640
components:
- type: Transform
@@ -96323,7 +98189,7 @@ entities:
pos: -28.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14641
components:
- type: Transform
@@ -96331,7 +98197,7 @@ entities:
pos: -27.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14642
components:
- type: Transform
@@ -96339,7 +98205,7 @@ entities:
pos: -26.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14643
components:
- type: Transform
@@ -96347,7 +98213,7 @@ entities:
pos: -25.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14644
components:
- type: Transform
@@ -96355,7 +98221,7 @@ entities:
pos: -33.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14645
components:
- type: Transform
@@ -96363,7 +98229,7 @@ entities:
pos: -33.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14646
components:
- type: Transform
@@ -96371,7 +98237,7 @@ entities:
pos: -33.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14647
components:
- type: Transform
@@ -96379,7 +98245,7 @@ entities:
pos: -33.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14648
components:
- type: Transform
@@ -96387,7 +98253,7 @@ entities:
pos: -33.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14649
components:
- type: Transform
@@ -96395,7 +98261,7 @@ entities:
pos: -33.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14650
components:
- type: Transform
@@ -96403,7 +98269,7 @@ entities:
pos: -33.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14651
components:
- type: Transform
@@ -96411,7 +98277,7 @@ entities:
pos: -33.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14652
components:
- type: Transform
@@ -96419,14 +98285,14 @@ entities:
pos: -33.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14653
components:
- type: Transform
pos: -94.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14654
components:
- type: Transform
@@ -96434,7 +98300,7 @@ entities:
pos: -25.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14655
components:
- type: Transform
@@ -96442,7 +98308,7 @@ entities:
pos: -25.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14656
components:
- type: Transform
@@ -96450,7 +98316,7 @@ entities:
pos: -25.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14657
components:
- type: Transform
@@ -96458,7 +98324,7 @@ entities:
pos: -25.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14658
components:
- type: Transform
@@ -96466,14 +98332,14 @@ entities:
pos: -25.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14659
components:
- type: Transform
pos: -103.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14660
components:
- type: Transform
@@ -96481,7 +98347,7 @@ entities:
pos: -32.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14661
components:
- type: Transform
@@ -96489,7 +98355,7 @@ entities:
pos: -31.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14662
components:
- type: Transform
@@ -96497,14 +98363,14 @@ entities:
pos: -29.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14663
components:
- type: Transform
pos: -103.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14664
components:
- type: Transform
@@ -96512,7 +98378,7 @@ entities:
pos: -27.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14665
components:
- type: Transform
@@ -96520,7 +98386,7 @@ entities:
pos: -26.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14666
components:
- type: Transform
@@ -96528,7 +98394,7 @@ entities:
pos: -25.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14667
components:
- type: Transform
@@ -96536,7 +98402,7 @@ entities:
pos: -23.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14668
components:
- type: Transform
@@ -96544,7 +98410,7 @@ entities:
pos: -30.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14669
components:
- type: Transform
@@ -96552,7 +98418,7 @@ entities:
pos: -22.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14670
components:
- type: Transform
@@ -96560,7 +98426,7 @@ entities:
pos: -24.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14671
components:
- type: Transform
@@ -96568,7 +98434,7 @@ entities:
pos: -23.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14672
components:
- type: Transform
@@ -96576,7 +98442,7 @@ entities:
pos: -22.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14673
components:
- type: Transform
@@ -96584,7 +98450,7 @@ entities:
pos: -21.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14674
components:
- type: Transform
@@ -96592,7 +98458,7 @@ entities:
pos: -23.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14675
components:
- type: Transform
@@ -96600,7 +98466,7 @@ entities:
pos: -22.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14676
components:
- type: Transform
@@ -96608,7 +98474,7 @@ entities:
pos: -23.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14677
components:
- type: Transform
@@ -96616,7 +98482,7 @@ entities:
pos: -22.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14678
components:
- type: Transform
@@ -96624,7 +98490,7 @@ entities:
pos: -21.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14679
components:
- type: Transform
@@ -96632,7 +98498,7 @@ entities:
pos: -23.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14680
components:
- type: Transform
@@ -96640,7 +98506,7 @@ entities:
pos: -22.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14681
components:
- type: Transform
@@ -96648,35 +98514,35 @@ entities:
pos: -25.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14682
components:
- type: Transform
pos: -24.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14683
components:
- type: Transform
pos: -24.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14684
components:
- type: Transform
pos: -24.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14685
components:
- type: Transform
pos: -24.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14686
components:
- type: Transform
@@ -96684,7 +98550,7 @@ entities:
pos: -99.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14687
components:
- type: Transform
@@ -96692,14 +98558,14 @@ entities:
pos: -101.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14688
components:
- type: Transform
pos: -104.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14689
components:
- type: Transform
@@ -96707,7 +98573,7 @@ entities:
pos: -16.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14690
components:
- type: Transform
@@ -96715,7 +98581,7 @@ entities:
pos: -24.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14691
components:
- type: Transform
@@ -96723,7 +98589,7 @@ entities:
pos: -58.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14692
components:
- type: Transform
@@ -96731,7 +98597,7 @@ entities:
pos: -60.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14693
components:
- type: Transform
@@ -96739,7 +98605,7 @@ entities:
pos: -69.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14694
components:
- type: Transform
@@ -96747,7 +98613,7 @@ entities:
pos: -70.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14695
components:
- type: Transform
@@ -96755,7 +98621,7 @@ entities:
pos: -21.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14696
components:
- type: Transform
@@ -96763,7 +98629,7 @@ entities:
pos: -20.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14697
components:
- type: Transform
@@ -96771,14 +98637,14 @@ entities:
pos: -19.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14698
components:
- type: Transform
pos: -103.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14699
components:
- type: Transform
@@ -96786,7 +98652,7 @@ entities:
pos: -17.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14700
components:
- type: Transform
@@ -96794,28 +98660,28 @@ entities:
pos: -22.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14701
components:
- type: Transform
pos: -103.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14702
components:
- type: Transform
pos: -103.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14703
components:
- type: Transform
pos: -103.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14704
components:
- type: Transform
@@ -96823,7 +98689,7 @@ entities:
pos: -101.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14705
components:
- type: Transform
@@ -96831,21 +98697,21 @@ entities:
pos: -22.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14706
components:
- type: Transform
pos: -104.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14707
components:
- type: Transform
pos: -104.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14708
components:
- type: Transform
@@ -96853,21 +98719,21 @@ entities:
pos: -70.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14709
components:
- type: Transform
pos: -15.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14710
components:
- type: Transform
pos: -104.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14711
components:
- type: Transform
@@ -96875,21 +98741,21 @@ entities:
pos: -61.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14712
components:
- type: Transform
pos: -29.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14713
components:
- type: Transform
pos: -104.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14714
components:
- type: Transform
@@ -96897,119 +98763,119 @@ entities:
pos: -64.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14715
components:
- type: Transform
pos: -104.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14716
components:
- type: Transform
pos: -15.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14717
components:
- type: Transform
pos: -15.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14718
components:
- type: Transform
pos: -15.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14719
components:
- type: Transform
pos: -15.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14720
components:
- type: Transform
pos: -15.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14721
components:
- type: Transform
pos: -15.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14722
components:
- type: Transform
pos: -15.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14723
components:
- type: Transform
pos: -15.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14724
components:
- type: Transform
pos: -15.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14725
components:
- type: Transform
pos: -15.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14726
components:
- type: Transform
pos: -15.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14727
components:
- type: Transform
pos: -15.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14728
components:
- type: Transform
pos: -14.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14729
components:
- type: Transform
pos: -14.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14730
components:
- type: Transform
pos: -14.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14731
components:
- type: Transform
@@ -97017,14 +98883,14 @@ entities:
pos: -14.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14732
components:
- type: Transform
pos: -19.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14733
components:
- type: Transform
@@ -97032,7 +98898,7 @@ entities:
pos: -10.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14734
components:
- type: Transform
@@ -97040,7 +98906,7 @@ entities:
pos: -8.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14735
components:
- type: Transform
@@ -97048,7 +98914,7 @@ entities:
pos: -7.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14736
components:
- type: Transform
@@ -97056,7 +98922,7 @@ entities:
pos: -6.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14737
components:
- type: Transform
@@ -97064,14 +98930,14 @@ entities:
pos: -9.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14738
components:
- type: Transform
pos: -19.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14739
components:
- type: Transform
@@ -97079,7 +98945,7 @@ entities:
pos: -26.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14740
components:
- type: Transform
@@ -97087,7 +98953,7 @@ entities:
pos: -26.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14741
components:
- type: Transform
@@ -97095,7 +98961,7 @@ entities:
pos: -11.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14742
components:
- type: Transform
@@ -97103,7 +98969,7 @@ entities:
pos: -11.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14743
components:
- type: Transform
@@ -97111,7 +98977,7 @@ entities:
pos: -11.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14744
components:
- type: Transform
@@ -97119,28 +98985,28 @@ entities:
pos: -27.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14745
components:
- type: Transform
pos: -10.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14746
components:
- type: Transform
pos: -10.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14747
components:
- type: Transform
pos: -10.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14748
components:
- type: Transform
@@ -97148,7 +99014,7 @@ entities:
pos: -3.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14749
components:
- type: Transform
@@ -97156,7 +99022,7 @@ entities:
pos: -3.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14750
components:
- type: Transform
@@ -97164,14 +99030,14 @@ entities:
pos: -3.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14751
components:
- type: Transform
pos: -10.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14752
components:
- type: Transform
@@ -97179,7 +99045,7 @@ entities:
pos: -4.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14753
components:
- type: Transform
@@ -97187,7 +99053,7 @@ entities:
pos: -6.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14754
components:
- type: Transform
@@ -97195,7 +99061,7 @@ entities:
pos: -7.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14755
components:
- type: Transform
@@ -97203,7 +99069,7 @@ entities:
pos: -5.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14756
components:
- type: Transform
@@ -97211,14 +99077,14 @@ entities:
pos: -8.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14757
components:
- type: Transform
pos: -10.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14758
components:
- type: Transform
@@ -97226,7 +99092,7 @@ entities:
pos: -3.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14759
components:
- type: Transform
@@ -97234,7 +99100,7 @@ entities:
pos: -3.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14760
components:
- type: Transform
@@ -97242,7 +99108,7 @@ entities:
pos: -4.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14761
components:
- type: Transform
@@ -97250,7 +99116,7 @@ entities:
pos: -14.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14762
components:
- type: Transform
@@ -97258,7 +99124,7 @@ entities:
pos: -14.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14763
components:
- type: Transform
@@ -97266,7 +99132,7 @@ entities:
pos: -14.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14764
components:
- type: Transform
@@ -97274,7 +99140,7 @@ entities:
pos: -14.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14765
components:
- type: Transform
@@ -97282,7 +99148,7 @@ entities:
pos: -14.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14766
components:
- type: Transform
@@ -97290,7 +99156,7 @@ entities:
pos: -14.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14767
components:
- type: Transform
@@ -97298,7 +99164,7 @@ entities:
pos: -14.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14768
components:
- type: Transform
@@ -97306,21 +99172,21 @@ entities:
pos: -14.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14769
components:
- type: Transform
pos: -14.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14770
components:
- type: Transform
pos: -14.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14771
components:
- type: Transform
@@ -97328,7 +99194,7 @@ entities:
pos: -14.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14772
components:
- type: Transform
@@ -97336,7 +99202,7 @@ entities:
pos: -13.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14773
components:
- type: Transform
@@ -97344,7 +99210,7 @@ entities:
pos: -12.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14774
components:
- type: Transform
@@ -97352,7 +99218,7 @@ entities:
pos: -12.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14775
components:
- type: Transform
@@ -97360,7 +99226,7 @@ entities:
pos: -13.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14776
components:
- type: Transform
@@ -97368,7 +99234,7 @@ entities:
pos: -11.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14777
components:
- type: Transform
@@ -97376,7 +99242,7 @@ entities:
pos: -11.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14778
components:
- type: Transform
@@ -97384,7 +99250,7 @@ entities:
pos: -11.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14779
components:
- type: Transform
@@ -97392,7 +99258,7 @@ entities:
pos: -11.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14780
components:
- type: Transform
@@ -97400,7 +99266,7 @@ entities:
pos: -11.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14781
components:
- type: Transform
@@ -97408,14 +99274,14 @@ entities:
pos: -11.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14782
components:
- type: Transform
pos: -4.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14783
components:
- type: Transform
@@ -97423,14 +99289,14 @@ entities:
pos: -4.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14784
components:
- type: Transform
pos: -10.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14785
components:
- type: Transform
@@ -97438,7 +99304,7 @@ entities:
pos: -3.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14786
components:
- type: Transform
@@ -97446,7 +99312,7 @@ entities:
pos: -3.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14787
components:
- type: Transform
@@ -97454,21 +99320,21 @@ entities:
pos: -3.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14788
components:
- type: Transform
pos: -10.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14789
components:
- type: Transform
pos: -19.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14790
components:
- type: Transform
@@ -97476,7 +99342,7 @@ entities:
pos: -3.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14791
components:
- type: Transform
@@ -97484,7 +99350,7 @@ entities:
pos: -1.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14792
components:
- type: Transform
@@ -97492,7 +99358,7 @@ entities:
pos: -0.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14793
components:
- type: Transform
@@ -97500,7 +99366,7 @@ entities:
pos: -2.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14794
components:
- type: Transform
@@ -97508,7 +99374,7 @@ entities:
pos: -0.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14795
components:
- type: Transform
@@ -97516,7 +99382,7 @@ entities:
pos: -1.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14796
components:
- type: Transform
@@ -97524,7 +99390,7 @@ entities:
pos: -3.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14797
components:
- type: Transform
@@ -97532,7 +99398,7 @@ entities:
pos: -21.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14798
components:
- type: Transform
@@ -97540,7 +99406,7 @@ entities:
pos: -2.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14799
components:
- type: Transform
@@ -97548,7 +99414,7 @@ entities:
pos: -0.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14800
components:
- type: Transform
@@ -97556,7 +99422,7 @@ entities:
pos: -2.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14801
components:
- type: Transform
@@ -97564,7 +99430,7 @@ entities:
pos: -3.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14802
components:
- type: Transform
@@ -97572,7 +99438,7 @@ entities:
pos: -19.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14803
components:
- type: Transform
@@ -97580,14 +99446,14 @@ entities:
pos: -1.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14804
components:
- type: Transform
pos: -19.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14805
components:
- type: Transform
@@ -97595,7 +99461,7 @@ entities:
pos: -3.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14806
components:
- type: Transform
@@ -97603,7 +99469,7 @@ entities:
pos: -1.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14807
components:
- type: Transform
@@ -97611,7 +99477,7 @@ entities:
pos: -0.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14808
components:
- type: Transform
@@ -97619,7 +99485,7 @@ entities:
pos: -2.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14809
components:
- type: Transform
@@ -97627,7 +99493,7 @@ entities:
pos: -20.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14810
components:
- type: Transform
@@ -97635,7 +99501,7 @@ entities:
pos: -39.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14811
components:
- type: Transform
@@ -97643,7 +99509,7 @@ entities:
pos: -40.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14812
components:
- type: Transform
@@ -97651,7 +99517,7 @@ entities:
pos: -41.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14813
components:
- type: Transform
@@ -97659,63 +99525,63 @@ entities:
pos: -42.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14814
components:
- type: Transform
pos: -43.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14815
components:
- type: Transform
pos: -43.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14816
components:
- type: Transform
pos: -43.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14817
components:
- type: Transform
pos: -43.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14818
components:
- type: Transform
pos: -43.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14819
components:
- type: Transform
pos: -43.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14820
components:
- type: Transform
pos: -43.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14821
components:
- type: Transform
pos: -43.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14822
components:
- type: Transform
@@ -97723,63 +99589,63 @@ entities:
pos: -30.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14823
components:
- type: Transform
pos: -42.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14824
components:
- type: Transform
pos: -42.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14825
components:
- type: Transform
pos: -42.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14826
components:
- type: Transform
pos: -42.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14827
components:
- type: Transform
pos: -42.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14828
components:
- type: Transform
pos: -42.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14829
components:
- type: Transform
pos: -42.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14830
components:
- type: Transform
pos: -42.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14831
components:
- type: Transform
@@ -97787,7 +99653,7 @@ entities:
pos: -28.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14832
components:
- type: Transform
@@ -97795,14 +99661,14 @@ entities:
pos: -19.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14833
components:
- type: Transform
pos: -19.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14834
components:
- type: Transform
@@ -97810,7 +99676,7 @@ entities:
pos: -21.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14835
components:
- type: Transform
@@ -97818,7 +99684,7 @@ entities:
pos: -102.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14836
components:
- type: Transform
@@ -97826,7 +99692,7 @@ entities:
pos: -99.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14837
components:
- type: Transform
@@ -97834,7 +99700,7 @@ entities:
pos: -98.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14838
components:
- type: Transform
@@ -97842,14 +99708,14 @@ entities:
pos: -100.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14839
components:
- type: Transform
pos: -103.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14840
components:
- type: Transform
@@ -97857,7 +99723,7 @@ entities:
pos: -105.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14841
components:
- type: Transform
@@ -97865,14 +99731,14 @@ entities:
pos: -105.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14842
components:
- type: Transform
pos: -103.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14843
components:
- type: Transform
@@ -97880,7 +99746,7 @@ entities:
pos: -102.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14844
components:
- type: Transform
@@ -97888,7 +99754,7 @@ entities:
pos: -104.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14845
components:
- type: Transform
@@ -97896,7 +99762,7 @@ entities:
pos: -104.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14846
components:
- type: Transform
@@ -97904,7 +99770,7 @@ entities:
pos: -105.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14847
components:
- type: Transform
@@ -97912,7 +99778,7 @@ entities:
pos: -105.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14848
components:
- type: Transform
@@ -97920,7 +99786,7 @@ entities:
pos: -105.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14849
components:
- type: Transform
@@ -97928,7 +99794,7 @@ entities:
pos: -106.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14850
components:
- type: Transform
@@ -97936,7 +99802,7 @@ entities:
pos: -108.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14851
components:
- type: Transform
@@ -97944,7 +99810,7 @@ entities:
pos: -109.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14852
components:
- type: Transform
@@ -97952,7 +99818,7 @@ entities:
pos: -110.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14853
components:
- type: Transform
@@ -97960,7 +99826,7 @@ entities:
pos: -107.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14854
components:
- type: Transform
@@ -97968,7 +99834,7 @@ entities:
pos: -112.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14855
components:
- type: Transform
@@ -97976,7 +99842,7 @@ entities:
pos: -111.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14856
components:
- type: Transform
@@ -97984,7 +99850,7 @@ entities:
pos: -113.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14857
components:
- type: Transform
@@ -97992,7 +99858,7 @@ entities:
pos: -116.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14858
components:
- type: Transform
@@ -98000,7 +99866,7 @@ entities:
pos: -115.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14859
components:
- type: Transform
@@ -98008,7 +99874,7 @@ entities:
pos: -117.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14860
components:
- type: Transform
@@ -98016,63 +99882,63 @@ entities:
pos: -114.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14861
components:
- type: Transform
pos: -118.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14862
components:
- type: Transform
pos: -118.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14863
components:
- type: Transform
pos: -118.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14864
components:
- type: Transform
pos: -120.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14865
components:
- type: Transform
pos: -120.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14866
components:
- type: Transform
pos: -120.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14867
components:
- type: Transform
pos: -120.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14868
components:
- type: Transform
pos: -120.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14869
components:
- type: Transform
@@ -98080,7 +99946,7 @@ entities:
pos: -119.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14870
components:
- type: Transform
@@ -98088,7 +99954,7 @@ entities:
pos: -117.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14871
components:
- type: Transform
@@ -98096,7 +99962,7 @@ entities:
pos: -116.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14872
components:
- type: Transform
@@ -98104,7 +99970,7 @@ entities:
pos: -115.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14873
components:
- type: Transform
@@ -98112,7 +99978,7 @@ entities:
pos: -114.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14874
components:
- type: Transform
@@ -98120,7 +99986,7 @@ entities:
pos: -113.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14875
components:
- type: Transform
@@ -98128,7 +99994,7 @@ entities:
pos: -111.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14876
components:
- type: Transform
@@ -98136,7 +100002,7 @@ entities:
pos: -110.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14877
components:
- type: Transform
@@ -98144,7 +100010,7 @@ entities:
pos: -109.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14878
components:
- type: Transform
@@ -98152,7 +100018,7 @@ entities:
pos: -107.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14879
components:
- type: Transform
@@ -98160,7 +100026,7 @@ entities:
pos: -108.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14880
components:
- type: Transform
@@ -98168,7 +100034,7 @@ entities:
pos: -106.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14881
components:
- type: Transform
@@ -98176,7 +100042,7 @@ entities:
pos: -112.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14882
components:
- type: Transform
@@ -98184,7 +100050,7 @@ entities:
pos: -37.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14883
components:
- type: Transform
@@ -98192,7 +100058,7 @@ entities:
pos: -37.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14884
components:
- type: Transform
@@ -98200,7 +100066,7 @@ entities:
pos: -104.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14885
components:
- type: Transform
@@ -98208,7 +100074,7 @@ entities:
pos: -46.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14886
components:
- type: Transform
@@ -98216,7 +100082,7 @@ entities:
pos: -31.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14887
components:
- type: Transform
@@ -98224,7 +100090,7 @@ entities:
pos: -36.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14888
components:
- type: Transform
@@ -98232,7 +100098,7 @@ entities:
pos: -32.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14889
components:
- type: Transform
@@ -98240,7 +100106,7 @@ entities:
pos: -34.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14890
components:
- type: Transform
@@ -98248,7 +100114,7 @@ entities:
pos: -35.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14891
components:
- type: Transform
@@ -98256,7 +100122,7 @@ entities:
pos: -37.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14892
components:
- type: Transform
@@ -98264,7 +100130,7 @@ entities:
pos: -37.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14893
components:
- type: Transform
@@ -98272,7 +100138,7 @@ entities:
pos: -38.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14894
components:
- type: Transform
@@ -98280,7 +100146,7 @@ entities:
pos: -38.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14895
components:
- type: Transform
@@ -98288,7 +100154,7 @@ entities:
pos: -37.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14896
components:
- type: Transform
@@ -98296,7 +100162,7 @@ entities:
pos: -37.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14897
components:
- type: Transform
@@ -98304,7 +100170,7 @@ entities:
pos: -38.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14898
components:
- type: Transform
@@ -98312,7 +100178,7 @@ entities:
pos: -33.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14899
components:
- type: Transform
@@ -98320,7 +100186,7 @@ entities:
pos: -35.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14900
components:
- type: Transform
@@ -98328,7 +100194,7 @@ entities:
pos: -32.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14901
components:
- type: Transform
@@ -98336,7 +100202,7 @@ entities:
pos: -31.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14902
components:
- type: Transform
@@ -98344,7 +100210,7 @@ entities:
pos: -30.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14903
components:
- type: Transform
@@ -98352,7 +100218,7 @@ entities:
pos: -34.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14904
components:
- type: Transform
@@ -98360,7 +100226,7 @@ entities:
pos: -37.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14905
components:
- type: Transform
@@ -98368,7 +100234,7 @@ entities:
pos: -37.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14906
components:
- type: Transform
@@ -98376,7 +100242,7 @@ entities:
pos: -38.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14907
components:
- type: Transform
@@ -98384,7 +100250,7 @@ entities:
pos: -38.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14908
components:
- type: Transform
@@ -98392,7 +100258,7 @@ entities:
pos: -38.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14909
components:
- type: Transform
@@ -98400,7 +100266,7 @@ entities:
pos: -38.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14910
components:
- type: Transform
@@ -98408,7 +100274,7 @@ entities:
pos: -56.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14911
components:
- type: Transform
@@ -98416,7 +100282,7 @@ entities:
pos: -31.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14912
components:
- type: Transform
@@ -98424,7 +100290,7 @@ entities:
pos: -44.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14913
components:
- type: Transform
@@ -98432,42 +100298,42 @@ entities:
pos: -28.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14914
components:
- type: Transform
pos: -30.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14915
components:
- type: Transform
pos: -30.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14916
components:
- type: Transform
pos: -30.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14917
components:
- type: Transform
pos: -30.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14918
components:
- type: Transform
pos: -30.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14919
components:
- type: Transform
@@ -98475,7 +100341,7 @@ entities:
pos: -30.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14920
components:
- type: Transform
@@ -98483,7 +100349,7 @@ entities:
pos: -29.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14921
components:
- type: Transform
@@ -98491,7 +100357,7 @@ entities:
pos: -29.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14922
components:
- type: Transform
@@ -98499,7 +100365,7 @@ entities:
pos: -28.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14923
components:
- type: Transform
@@ -98507,7 +100373,7 @@ entities:
pos: -27.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14924
components:
- type: Transform
@@ -98515,7 +100381,7 @@ entities:
pos: -26.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14925
components:
- type: Transform
@@ -98523,7 +100389,7 @@ entities:
pos: -25.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14926
components:
- type: Transform
@@ -98531,7 +100397,7 @@ entities:
pos: -23.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14927
components:
- type: Transform
@@ -98539,7 +100405,7 @@ entities:
pos: -24.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14928
components:
- type: Transform
@@ -98547,7 +100413,7 @@ entities:
pos: -54.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14929
components:
- type: Transform
@@ -98555,7 +100421,7 @@ entities:
pos: -108.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14930
components:
- type: Transform
@@ -98563,7 +100429,7 @@ entities:
pos: -27.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14931
components:
- type: Transform
@@ -98571,7 +100437,7 @@ entities:
pos: -29.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14932
components:
- type: Transform
@@ -98579,7 +100445,7 @@ entities:
pos: -28.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14933
components:
- type: Transform
@@ -98587,14 +100453,14 @@ entities:
pos: -42.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14934
components:
- type: Transform
pos: -51.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14935
components:
- type: Transform
@@ -98602,7 +100468,7 @@ entities:
pos: -20.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14936
components:
- type: Transform
@@ -98610,7 +100476,7 @@ entities:
pos: -22.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14937
components:
- type: Transform
@@ -98618,7 +100484,7 @@ entities:
pos: -44.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14938
components:
- type: Transform
@@ -98626,7 +100492,7 @@ entities:
pos: -25.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14939
components:
- type: Transform
@@ -98634,7 +100500,7 @@ entities:
pos: -27.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14940
components:
- type: Transform
@@ -98642,7 +100508,7 @@ entities:
pos: -26.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14941
components:
- type: Transform
@@ -98650,7 +100516,7 @@ entities:
pos: -26.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14942
components:
- type: Transform
@@ -98658,7 +100524,7 @@ entities:
pos: -25.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14943
components:
- type: Transform
@@ -98666,7 +100532,7 @@ entities:
pos: -23.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14944
components:
- type: Transform
@@ -98674,7 +100540,7 @@ entities:
pos: -22.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14945
components:
- type: Transform
@@ -98682,7 +100548,7 @@ entities:
pos: -21.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14946
components:
- type: Transform
@@ -98690,7 +100556,7 @@ entities:
pos: -18.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14947
components:
- type: Transform
@@ -98698,7 +100564,7 @@ entities:
pos: -24.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14948
components:
- type: Transform
@@ -98706,7 +100572,7 @@ entities:
pos: -101.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14949
components:
- type: Transform
@@ -98714,7 +100580,7 @@ entities:
pos: -19.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14950
components:
- type: Transform
@@ -98722,7 +100588,7 @@ entities:
pos: -20.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14951
components:
- type: Transform
@@ -98730,7 +100596,7 @@ entities:
pos: -19.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14952
components:
- type: Transform
@@ -98738,7 +100604,7 @@ entities:
pos: -17.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14953
components:
- type: Transform
@@ -98746,7 +100612,7 @@ entities:
pos: -16.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14954
components:
- type: Transform
@@ -98754,7 +100620,7 @@ entities:
pos: -15.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14955
components:
- type: Transform
@@ -98762,14 +100628,14 @@ entities:
pos: -18.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14956
components:
- type: Transform
pos: -104.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14957
components:
- type: Transform
@@ -98777,7 +100643,7 @@ entities:
pos: -15.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14958
components:
- type: Transform
@@ -98785,7 +100651,7 @@ entities:
pos: -15.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14959
components:
- type: Transform
@@ -98793,7 +100659,7 @@ entities:
pos: -15.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14960
components:
- type: Transform
@@ -98801,7 +100667,7 @@ entities:
pos: -14.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14961
components:
- type: Transform
@@ -98809,7 +100675,7 @@ entities:
pos: -14.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14962
components:
- type: Transform
@@ -98817,7 +100683,7 @@ entities:
pos: -14.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14963
components:
- type: Transform
@@ -98825,7 +100691,7 @@ entities:
pos: -14.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14964
components:
- type: Transform
@@ -98833,77 +100699,77 @@ entities:
pos: -14.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14965
components:
- type: Transform
pos: -15.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14966
components:
- type: Transform
pos: -15.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14967
components:
- type: Transform
pos: -15.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14968
components:
- type: Transform
pos: -15.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14969
components:
- type: Transform
pos: -15.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14970
components:
- type: Transform
pos: -15.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14971
components:
- type: Transform
pos: -15.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14972
components:
- type: Transform
pos: -15.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14973
components:
- type: Transform
pos: -15.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14974
components:
- type: Transform
pos: -14.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14975
components:
- type: Transform
@@ -98911,133 +100777,133 @@ entities:
pos: -45.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14976
components:
- type: Transform
pos: -14.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14977
components:
- type: Transform
pos: -14.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14978
components:
- type: Transform
pos: -14.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14979
components:
- type: Transform
pos: -14.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14980
components:
- type: Transform
pos: -14.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14981
components:
- type: Transform
pos: -14.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14982
components:
- type: Transform
pos: -14.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14983
components:
- type: Transform
pos: -14.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14984
components:
- type: Transform
pos: -14.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14985
components:
- type: Transform
pos: -14.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14986
components:
- type: Transform
pos: -15.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14987
components:
- type: Transform
pos: -15.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14988
components:
- type: Transform
pos: -15.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14989
components:
- type: Transform
pos: -15.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14990
components:
- type: Transform
pos: -30.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14991
components:
- type: Transform
pos: -30.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14992
components:
- type: Transform
pos: -30.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14993
components:
- type: Transform
pos: -30.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14994
components:
- type: Transform
@@ -99045,7 +100911,7 @@ entities:
pos: -26.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 14995
components:
- type: Transform
@@ -99053,7 +100919,7 @@ entities:
pos: -44.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14996
components:
- type: Transform
@@ -99061,7 +100927,7 @@ entities:
pos: -28.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14997
components:
- type: Transform
@@ -99069,7 +100935,7 @@ entities:
pos: -28.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14998
components:
- type: Transform
@@ -99077,7 +100943,7 @@ entities:
pos: -28.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 14999
components:
- type: Transform
@@ -99085,7 +100951,7 @@ entities:
pos: -28.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15000
components:
- type: Transform
@@ -99093,7 +100959,7 @@ entities:
pos: -28.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15001
components:
- type: Transform
@@ -99101,7 +100967,7 @@ entities:
pos: -28.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15002
components:
- type: Transform
@@ -99109,7 +100975,7 @@ entities:
pos: -28.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15003
components:
- type: Transform
@@ -99117,7 +100983,7 @@ entities:
pos: -24.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15004
components:
- type: Transform
@@ -99125,7 +100991,7 @@ entities:
pos: -18.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15005
components:
- type: Transform
@@ -99133,35 +100999,35 @@ entities:
pos: -27.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15006
components:
- type: Transform
pos: -11.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15007
components:
- type: Transform
pos: -10.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15008
components:
- type: Transform
pos: -10.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15009
components:
- type: Transform
pos: -3.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15010
components:
- type: Transform
@@ -99169,7 +101035,7 @@ entities:
pos: -4.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15011
components:
- type: Transform
@@ -99177,7 +101043,7 @@ entities:
pos: -4.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15012
components:
- type: Transform
@@ -99185,7 +101051,7 @@ entities:
pos: -102.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15013
components:
- type: Transform
@@ -99193,7 +101059,7 @@ entities:
pos: -26.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15014
components:
- type: Transform
@@ -99201,7 +101067,7 @@ entities:
pos: -25.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15015
components:
- type: Transform
@@ -99209,7 +101075,7 @@ entities:
pos: -23.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15016
components:
- type: Transform
@@ -99217,7 +101083,7 @@ entities:
pos: -21.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15017
components:
- type: Transform
@@ -99225,7 +101091,7 @@ entities:
pos: -19.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15018
components:
- type: Transform
@@ -99233,7 +101099,7 @@ entities:
pos: -22.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15019
components:
- type: Transform
@@ -99241,7 +101107,7 @@ entities:
pos: -17.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15020
components:
- type: Transform
@@ -99255,7 +101121,7 @@ entities:
pos: -16.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15022
components:
- type: Transform
@@ -99263,7 +101129,7 @@ entities:
pos: -18.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15023
components:
- type: Transform
@@ -99275,77 +101141,77 @@ entities:
pos: -18.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15025
components:
- type: Transform
pos: -18.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15026
components:
- type: Transform
pos: -18.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15027
components:
- type: Transform
pos: -18.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15028
components:
- type: Transform
pos: -18.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15029
components:
- type: Transform
pos: -18.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15030
components:
- type: Transform
pos: -18.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15031
components:
- type: Transform
pos: -19.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15032
components:
- type: Transform
pos: -19.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15033
components:
- type: Transform
pos: -19.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15034
components:
- type: Transform
pos: -19.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15035
components:
- type: Transform
@@ -99362,21 +101228,21 @@ entities:
pos: -103.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15038
components:
- type: Transform
pos: -103.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15039
components:
- type: Transform
pos: -103.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15040
components:
- type: Transform
@@ -99384,21 +101250,21 @@ entities:
pos: -18.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15041
components:
- type: Transform
pos: -103.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15042
components:
- type: Transform
pos: -29.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15043
components:
- type: Transform
@@ -99406,21 +101272,21 @@ entities:
pos: -20.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15044
components:
- type: Transform
pos: -103.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15045
components:
- type: Transform
pos: -24.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15046
components:
- type: Transform
@@ -99428,7 +101294,7 @@ entities:
pos: -65.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15047
components:
- type: Transform
@@ -99436,7 +101302,7 @@ entities:
pos: -57.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15048
components:
- type: Transform
@@ -99444,14 +101310,14 @@ entities:
pos: -110.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15049
components:
- type: Transform
pos: -75.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15050
components:
- type: Transform
@@ -99459,14 +101325,14 @@ entities:
pos: -94.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15051
components:
- type: Transform
pos: -58.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15052
components:
- type: Transform
@@ -99474,7 +101340,7 @@ entities:
pos: -18.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15053
components:
- type: Transform
@@ -99482,7 +101348,7 @@ entities:
pos: -18.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15054
components:
- type: Transform
@@ -99490,7 +101356,7 @@ entities:
pos: -29.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15055
components:
- type: Transform
@@ -99498,14 +101364,14 @@ entities:
pos: -103.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15056
components:
- type: Transform
pos: -58.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15057
components:
- type: Transform
@@ -99513,7 +101379,7 @@ entities:
pos: -55.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15058
components:
- type: Transform
@@ -99521,49 +101387,49 @@ entities:
pos: -42.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15059
components:
- type: Transform
pos: -30.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15060
components:
- type: Transform
pos: -30.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15061
components:
- type: Transform
pos: -28.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15062
components:
- type: Transform
pos: -28.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15063
components:
- type: Transform
pos: -28.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15064
components:
- type: Transform
pos: -28.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15065
components:
- type: Transform
@@ -99571,7 +101437,7 @@ entities:
pos: -29.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15066
components:
- type: Transform
@@ -99579,7 +101445,7 @@ entities:
pos: -30.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15067
components:
- type: Transform
@@ -99587,7 +101453,7 @@ entities:
pos: -31.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15068
components:
- type: Transform
@@ -99595,7 +101461,7 @@ entities:
pos: -31.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15069
components:
- type: Transform
@@ -99603,14 +101469,14 @@ entities:
pos: -33.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15070
components:
- type: Transform
pos: -37.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15071
components:
- type: Transform
@@ -99618,7 +101484,7 @@ entities:
pos: -32.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15072
components:
- type: Transform
@@ -99626,7 +101492,7 @@ entities:
pos: -35.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15073
components:
- type: Transform
@@ -99634,7 +101500,7 @@ entities:
pos: -36.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15074
components:
- type: Transform
@@ -99642,7 +101508,7 @@ entities:
pos: -37.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15075
components:
- type: Transform
@@ -99650,7 +101516,7 @@ entities:
pos: -37.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15076
components:
- type: Transform
@@ -99658,7 +101524,7 @@ entities:
pos: -32.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15077
components:
- type: Transform
@@ -99666,7 +101532,7 @@ entities:
pos: -35.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15078
components:
- type: Transform
@@ -99674,7 +101540,7 @@ entities:
pos: -36.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15079
components:
- type: Transform
@@ -99682,21 +101548,21 @@ entities:
pos: -37.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15080
components:
- type: Transform
pos: -34.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15081
components:
- type: Transform
pos: -38.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15082
components:
- type: Transform
@@ -99704,14 +101570,14 @@ entities:
pos: -65.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15083
components:
- type: Transform
pos: -64.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15084
components:
- type: Transform
@@ -99719,14 +101585,14 @@ entities:
pos: -107.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15085
components:
- type: Transform
pos: -64.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15086
components:
- type: Transform
@@ -99734,7 +101600,7 @@ entities:
pos: -64.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15087
components:
- type: Transform
@@ -99742,28 +101608,28 @@ entities:
pos: -38.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15088
components:
- type: Transform
pos: -39.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15089
components:
- type: Transform
pos: -39.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15090
components:
- type: Transform
pos: -21.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15091
components:
- type: Transform
@@ -99771,7 +101637,7 @@ entities:
pos: -22.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15092
components:
- type: Transform
@@ -99779,7 +101645,7 @@ entities:
pos: -23.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15093
components:
- type: Transform
@@ -99787,7 +101653,7 @@ entities:
pos: -25.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15094
components:
- type: Transform
@@ -99795,7 +101661,7 @@ entities:
pos: -26.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15095
components:
- type: Transform
@@ -99803,7 +101669,7 @@ entities:
pos: -27.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15096
components:
- type: Transform
@@ -99811,7 +101677,7 @@ entities:
pos: -29.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15097
components:
- type: Transform
@@ -99819,7 +101685,7 @@ entities:
pos: -24.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15098
components:
- type: Transform
@@ -99827,7 +101693,7 @@ entities:
pos: -30.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15099
components:
- type: Transform
@@ -99835,7 +101701,7 @@ entities:
pos: -28.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15100
components:
- type: Transform
@@ -99843,7 +101709,7 @@ entities:
pos: -30.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15101
components:
- type: Transform
@@ -99851,7 +101717,7 @@ entities:
pos: -30.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15102
components:
- type: Transform
@@ -99859,7 +101725,7 @@ entities:
pos: -30.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15103
components:
- type: Transform
@@ -99867,7 +101733,7 @@ entities:
pos: -28.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15104
components:
- type: Transform
@@ -99875,21 +101741,21 @@ entities:
pos: -27.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15105
components:
- type: Transform
pos: -28.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15106
components:
- type: Transform
pos: -28.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15107
components:
- type: Transform
@@ -99897,7 +101763,7 @@ entities:
pos: -31.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15108
components:
- type: Transform
@@ -99905,7 +101771,7 @@ entities:
pos: -32.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15109
components:
- type: Transform
@@ -99913,7 +101779,7 @@ entities:
pos: -34.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15110
components:
- type: Transform
@@ -99921,7 +101787,7 @@ entities:
pos: -35.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15111
components:
- type: Transform
@@ -99929,7 +101795,7 @@ entities:
pos: -36.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15112
components:
- type: Transform
@@ -99937,7 +101803,7 @@ entities:
pos: -37.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15113
components:
- type: Transform
@@ -99945,7 +101811,7 @@ entities:
pos: -33.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15114
components:
- type: Transform
@@ -99953,7 +101819,7 @@ entities:
pos: -65.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15115
components:
- type: Transform
@@ -99961,7 +101827,7 @@ entities:
pos: -64.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15116
components:
- type: Transform
@@ -99969,14 +101835,14 @@ entities:
pos: -65.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15117
components:
- type: Transform
pos: -58.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15118
components:
- type: Transform
@@ -99984,28 +101850,28 @@ entities:
pos: -81.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15119
components:
- type: Transform
pos: -104.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15120
components:
- type: Transform
pos: -104.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15121
components:
- type: Transform
pos: -104.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15122
components:
- type: Transform
@@ -100219,7 +102085,7 @@ entities:
pos: -43.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15150
components:
- type: Transform
@@ -100227,7 +102093,7 @@ entities:
pos: -82.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15151
components:
- type: Transform
@@ -100235,14 +102101,14 @@ entities:
pos: -49.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15152
components:
- type: Transform
pos: -50.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15153
components:
- type: Transform
@@ -100250,7 +102116,7 @@ entities:
pos: -42.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15154
components:
- type: Transform
@@ -100258,7 +102124,7 @@ entities:
pos: -42.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15155
components:
- type: Transform
@@ -100266,7 +102132,7 @@ entities:
pos: -42.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15156
components:
- type: Transform
@@ -100274,7 +102140,7 @@ entities:
pos: -42.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15157
components:
- type: Transform
@@ -100282,7 +102148,7 @@ entities:
pos: -42.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15158
components:
- type: Transform
@@ -100290,7 +102156,7 @@ entities:
pos: -42.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15159
components:
- type: Transform
@@ -100298,7 +102164,7 @@ entities:
pos: -42.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15160
components:
- type: Transform
@@ -100306,7 +102172,7 @@ entities:
pos: -44.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15161
components:
- type: Transform
@@ -100314,7 +102180,7 @@ entities:
pos: -43.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15162
components:
- type: Transform
@@ -100322,7 +102188,7 @@ entities:
pos: -43.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15163
components:
- type: Transform
@@ -100330,7 +102196,7 @@ entities:
pos: -43.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15164
components:
- type: Transform
@@ -100338,7 +102204,7 @@ entities:
pos: -43.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15165
components:
- type: Transform
@@ -100346,7 +102212,7 @@ entities:
pos: -43.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15166
components:
- type: Transform
@@ -100354,7 +102220,7 @@ entities:
pos: -43.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15167
components:
- type: Transform
@@ -100362,7 +102228,7 @@ entities:
pos: -43.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15168
components:
- type: Transform
@@ -100370,7 +102236,7 @@ entities:
pos: -46.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15169
components:
- type: Transform
@@ -100378,7 +102244,7 @@ entities:
pos: -48.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15170
components:
- type: Transform
@@ -100386,7 +102252,7 @@ entities:
pos: -47.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15171
components:
- type: Transform
@@ -100394,7 +102260,7 @@ entities:
pos: -47.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15172
components:
- type: Transform
@@ -100402,7 +102268,7 @@ entities:
pos: -80.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15173
components:
- type: Transform
@@ -100410,7 +102276,7 @@ entities:
pos: -45.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15174
components:
- type: Transform
@@ -100418,7 +102284,7 @@ entities:
pos: -46.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15175
components:
- type: Transform
@@ -100426,7 +102292,7 @@ entities:
pos: -47.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15176
components:
- type: Transform
@@ -100434,7 +102300,7 @@ entities:
pos: -50.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15177
components:
- type: Transform
@@ -100442,7 +102308,7 @@ entities:
pos: -51.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15178
components:
- type: Transform
@@ -100450,7 +102316,7 @@ entities:
pos: -49.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15179
components:
- type: Transform
@@ -100458,77 +102324,77 @@ entities:
pos: -45.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15180
components:
- type: Transform
pos: -49.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15181
components:
- type: Transform
pos: -49.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15182
components:
- type: Transform
pos: -49.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15183
components:
- type: Transform
pos: -49.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15184
components:
- type: Transform
pos: -49.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15185
components:
- type: Transform
pos: -49.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15186
components:
- type: Transform
pos: -49.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15187
components:
- type: Transform
pos: -48.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15188
components:
- type: Transform
pos: -48.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15189
components:
- type: Transform
pos: -48.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15190
components:
- type: Transform
@@ -100544,28 +102410,28 @@ entities:
pos: -48.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15192
components:
- type: Transform
pos: -48.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15193
components:
- type: Transform
pos: -48.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15194
components:
- type: Transform
pos: -48.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15195
components:
- type: Transform
@@ -100573,7 +102439,7 @@ entities:
pos: -48.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15196
components:
- type: Transform
@@ -100581,7 +102447,7 @@ entities:
pos: -46.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15197
components:
- type: Transform
@@ -100589,7 +102455,7 @@ entities:
pos: -47.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15198
components:
- type: Transform
@@ -100597,7 +102463,7 @@ entities:
pos: -79.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15199
components:
- type: Transform
@@ -100605,7 +102471,7 @@ entities:
pos: -76.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15200
components:
- type: Transform
@@ -100613,7 +102479,7 @@ entities:
pos: -78.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15201
components:
- type: Transform
@@ -100621,7 +102487,7 @@ entities:
pos: -90.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15202
components:
- type: Transform
@@ -100629,7 +102495,7 @@ entities:
pos: -92.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15203
components:
- type: Transform
@@ -100637,7 +102503,7 @@ entities:
pos: -91.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15204
components:
- type: Transform
@@ -100645,7 +102511,7 @@ entities:
pos: -47.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15205
components:
- type: Transform
@@ -100653,7 +102519,7 @@ entities:
pos: -89.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15206
components:
- type: Transform
@@ -100661,14 +102527,14 @@ entities:
pos: -46.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15207
components:
- type: Transform
pos: -58.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15208
components:
- type: Transform
@@ -100676,7 +102542,7 @@ entities:
pos: -44.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15209
components:
- type: Transform
@@ -100684,14 +102550,14 @@ entities:
pos: -43.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15210
components:
- type: Transform
pos: -42.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15211
components:
- type: Transform
@@ -100707,14 +102573,14 @@ entities:
pos: -42.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15213
components:
- type: Transform
pos: -57.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15214
components:
- type: Transform
@@ -100722,7 +102588,7 @@ entities:
pos: -38.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15215
components:
- type: Transform
@@ -100730,7 +102596,7 @@ entities:
pos: -39.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15216
components:
- type: Transform
@@ -100738,28 +102604,28 @@ entities:
pos: -40.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15217
components:
- type: Transform
pos: -42.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15218
components:
- type: Transform
pos: -42.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15219
components:
- type: Transform
pos: -42.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15220
components:
- type: Transform
@@ -100767,7 +102633,7 @@ entities:
pos: -133.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15221
components:
- type: Transform
@@ -100775,84 +102641,84 @@ entities:
pos: -102.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15222
components:
- type: Transform
pos: -42.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15223
components:
- type: Transform
pos: -42.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15224
components:
- type: Transform
pos: -42.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15225
components:
- type: Transform
pos: -42.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15226
components:
- type: Transform
pos: -42.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15227
components:
- type: Transform
pos: -42.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15228
components:
- type: Transform
pos: -42.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15229
components:
- type: Transform
pos: -42.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15230
components:
- type: Transform
pos: -42.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15231
components:
- type: Transform
pos: -42.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15232
components:
- type: Transform
pos: -42.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15233
components:
- type: Transform
@@ -100864,21 +102730,21 @@ entities:
pos: -42.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15235
components:
- type: Transform
pos: -42.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15236
components:
- type: Transform
pos: -42.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15237
components:
- type: Transform
@@ -100886,7 +102752,7 @@ entities:
pos: -6.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15238
components:
- type: Transform
@@ -100894,7 +102760,7 @@ entities:
pos: -7.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15239
components:
- type: Transform
@@ -100902,7 +102768,7 @@ entities:
pos: -8.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15240
components:
- type: Transform
@@ -100910,7 +102776,7 @@ entities:
pos: -10.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15241
components:
- type: Transform
@@ -100918,7 +102784,7 @@ entities:
pos: -9.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15242
components:
- type: Transform
@@ -100926,7 +102792,7 @@ entities:
pos: -12.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15243
components:
- type: Transform
@@ -100934,7 +102800,7 @@ entities:
pos: -14.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15244
components:
- type: Transform
@@ -100942,28 +102808,28 @@ entities:
pos: -13.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15245
components:
- type: Transform
pos: -15.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15246
components:
- type: Transform
pos: -15.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15247
components:
- type: Transform
pos: -15.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15248
components:
- type: Transform
@@ -100971,7 +102837,7 @@ entities:
pos: -8.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15249
components:
- type: Transform
@@ -100979,7 +102845,7 @@ entities:
pos: -9.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15250
components:
- type: Transform
@@ -100987,7 +102853,7 @@ entities:
pos: -11.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15251
components:
- type: Transform
@@ -100995,7 +102861,7 @@ entities:
pos: -12.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15252
components:
- type: Transform
@@ -101003,7 +102869,7 @@ entities:
pos: -13.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15253
components:
- type: Transform
@@ -101011,301 +102877,301 @@ entities:
pos: -10.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15254
components:
- type: Transform
pos: -14.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15255
components:
- type: Transform
pos: -14.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15256
components:
- type: Transform
pos: -14.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15257
components:
- type: Transform
pos: -14.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15258
components:
- type: Transform
pos: -15.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15259
components:
- type: Transform
pos: -15.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15260
components:
- type: Transform
pos: -15.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15261
components:
- type: Transform
pos: -15.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15262
components:
- type: Transform
pos: -15.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15263
components:
- type: Transform
pos: -15.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15264
components:
- type: Transform
pos: -15.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15265
components:
- type: Transform
pos: -15.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15266
components:
- type: Transform
pos: -15.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15267
components:
- type: Transform
pos: -14.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15268
components:
- type: Transform
pos: -14.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15269
components:
- type: Transform
pos: -14.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15270
components:
- type: Transform
pos: -14.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15271
components:
- type: Transform
pos: -14.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15272
components:
- type: Transform
pos: -14.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15273
components:
- type: Transform
pos: -14.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15274
components:
- type: Transform
pos: -14.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15275
components:
- type: Transform
pos: -14.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15276
components:
- type: Transform
pos: -14.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15277
components:
- type: Transform
pos: -14.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15278
components:
- type: Transform
pos: -14.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15279
components:
- type: Transform
pos: -15.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15280
components:
- type: Transform
pos: -15.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15281
components:
- type: Transform
pos: -15.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15282
components:
- type: Transform
pos: -15.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15283
components:
- type: Transform
pos: -15.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15284
components:
- type: Transform
pos: -15.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15285
components:
- type: Transform
pos: -15.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15286
components:
- type: Transform
pos: -15.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15287
components:
- type: Transform
pos: -15.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15288
components:
- type: Transform
pos: -15.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15289
components:
- type: Transform
pos: -14.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15290
components:
- type: Transform
pos: -14.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15291
components:
- type: Transform
pos: -14.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15292
components:
- type: Transform
pos: -14.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15293
components:
- type: Transform
pos: -14.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15294
components:
- type: Transform
pos: -14.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15295
components:
- type: Transform
pos: -14.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15296
components:
- type: Transform
@@ -101313,7 +103179,7 @@ entities:
pos: -14.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15297
components:
- type: Transform
@@ -101321,7 +103187,7 @@ entities:
pos: -15.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15298
components:
- type: Transform
@@ -101329,14 +103195,14 @@ entities:
pos: -14.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15299
components:
- type: Transform
pos: -126.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15300
components:
- type: Transform
@@ -101349,7 +103215,7 @@ entities:
pos: -88.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15302
components:
- type: Transform
@@ -101357,7 +103223,7 @@ entities:
pos: -65.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15303
components:
- type: Transform
@@ -101365,14 +103231,14 @@ entities:
pos: -65.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15304
components:
- type: Transform
pos: -103.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15305
components:
- type: Transform
@@ -101380,7 +103246,7 @@ entities:
pos: -22.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15306
components:
- type: Transform
@@ -101388,7 +103254,7 @@ entities:
pos: -29.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15307
components:
- type: Transform
@@ -101396,7 +103262,7 @@ entities:
pos: -20.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15308
components:
- type: Transform
@@ -101404,7 +103270,7 @@ entities:
pos: -21.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15309
components:
- type: Transform
@@ -101412,7 +103278,7 @@ entities:
pos: -23.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15310
components:
- type: Transform
@@ -101420,7 +103286,7 @@ entities:
pos: -24.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15311
components:
- type: Transform
@@ -101428,7 +103294,7 @@ entities:
pos: -25.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15312
components:
- type: Transform
@@ -101436,7 +103302,7 @@ entities:
pos: -26.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15313
components:
- type: Transform
@@ -101444,7 +103310,7 @@ entities:
pos: -27.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15314
components:
- type: Transform
@@ -101452,7 +103318,7 @@ entities:
pos: -28.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15315
components:
- type: Transform
@@ -101460,7 +103326,7 @@ entities:
pos: -40.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15316
components:
- type: Transform
@@ -101468,7 +103334,7 @@ entities:
pos: -33.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15317
components:
- type: Transform
@@ -101476,7 +103342,7 @@ entities:
pos: -31.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15318
components:
- type: Transform
@@ -101484,7 +103350,7 @@ entities:
pos: -32.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15319
components:
- type: Transform
@@ -101492,7 +103358,7 @@ entities:
pos: -34.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15320
components:
- type: Transform
@@ -101500,7 +103366,7 @@ entities:
pos: -35.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15321
components:
- type: Transform
@@ -101508,7 +103374,7 @@ entities:
pos: -36.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15322
components:
- type: Transform
@@ -101516,7 +103382,7 @@ entities:
pos: -37.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15323
components:
- type: Transform
@@ -101524,7 +103390,7 @@ entities:
pos: -38.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15324
components:
- type: Transform
@@ -101532,7 +103398,7 @@ entities:
pos: -39.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15325
components:
- type: Transform
@@ -101540,7 +103406,7 @@ entities:
pos: -128.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15326
components:
- type: Transform
@@ -101548,14 +103414,14 @@ entities:
pos: -33.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15327
components:
- type: Transform
pos: -4.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15328
components:
- type: Transform
@@ -101563,7 +103429,7 @@ entities:
pos: -19.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15329
components:
- type: Transform
@@ -101571,7 +103437,7 @@ entities:
pos: -18.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15330
components:
- type: Transform
@@ -101579,7 +103445,7 @@ entities:
pos: -18.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15331
components:
- type: Transform
@@ -101587,14 +103453,14 @@ entities:
pos: -25.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15332
components:
- type: Transform
pos: -19.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15333
components:
- type: Transform
@@ -101602,7 +103468,7 @@ entities:
pos: -34.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15334
components:
- type: Transform
@@ -101610,7 +103476,7 @@ entities:
pos: -32.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15335
components:
- type: Transform
@@ -101618,14 +103484,14 @@ entities:
pos: -33.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15336
components:
- type: Transform
pos: -36.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15337
components:
- type: Transform
@@ -101633,7 +103499,7 @@ entities:
pos: -100.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15338
components:
- type: Transform
@@ -101641,7 +103507,7 @@ entities:
pos: -80.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15339
components:
- type: Transform
@@ -101657,7 +103523,7 @@ entities:
pos: -5.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15341
components:
- type: Transform
@@ -101665,7 +103531,7 @@ entities:
pos: -109.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15342
components:
- type: Transform
@@ -101673,7 +103539,7 @@ entities:
pos: -36.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15343
components:
- type: Transform
@@ -101689,7 +103555,7 @@ entities:
pos: -82.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15345
components:
- type: Transform
@@ -101697,7 +103563,7 @@ entities:
pos: -102.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15346
components:
- type: Transform
@@ -101705,7 +103571,7 @@ entities:
pos: -129.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15347
components:
- type: Transform
@@ -101713,7 +103579,7 @@ entities:
pos: -72.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15348
components:
- type: Transform
@@ -101732,7 +103598,7 @@ entities:
pos: -103.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15351
components:
- type: Transform
@@ -101740,7 +103606,7 @@ entities:
pos: -104.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15352
components:
- type: Transform
@@ -101748,7 +103614,7 @@ entities:
pos: -80.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15353
components:
- type: Transform
@@ -101756,14 +103622,14 @@ entities:
pos: -71.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15354
components:
- type: Transform
pos: -103.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15355
components:
- type: Transform
@@ -101771,14 +103637,14 @@ entities:
pos: -67.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15356
components:
- type: Transform
pos: -103.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15357
components:
- type: Transform
@@ -101786,7 +103652,7 @@ entities:
pos: -147.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15358
components:
- type: Transform
@@ -101808,21 +103674,21 @@ entities:
pos: -119.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15361
components:
- type: Transform
pos: -119.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15362
components:
- type: Transform
pos: -103.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15363
components:
- type: Transform
@@ -101830,7 +103696,7 @@ entities:
pos: -148.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15364
components:
- type: Transform
@@ -101860,14 +103726,14 @@ entities:
pos: -103.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15368
components:
- type: Transform
pos: -103.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15369
components:
- type: Transform
@@ -101875,7 +103741,7 @@ entities:
pos: -120.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15370
components:
- type: Transform
@@ -101891,7 +103757,7 @@ entities:
pos: -85.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15372
components:
- type: Transform
@@ -101899,7 +103765,7 @@ entities:
pos: -86.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15373
components:
- type: Transform
@@ -101907,7 +103773,7 @@ entities:
pos: -141.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15374
components:
- type: Transform
@@ -101915,7 +103781,7 @@ entities:
pos: -84.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15375
components:
- type: Transform
@@ -101923,7 +103789,7 @@ entities:
pos: -87.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15376
components:
- type: Transform
@@ -101931,7 +103797,7 @@ entities:
pos: -89.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15377
components:
- type: Transform
@@ -101955,7 +103821,7 @@ entities:
pos: -84.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15380
components:
- type: Transform
@@ -101963,7 +103829,7 @@ entities:
pos: -88.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15381
components:
- type: Transform
@@ -101971,7 +103837,7 @@ entities:
pos: -83.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15382
components:
- type: Transform
@@ -101979,7 +103845,7 @@ entities:
pos: -86.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15383
components:
- type: Transform
@@ -101987,7 +103853,7 @@ entities:
pos: -136.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15384
components:
- type: Transform
@@ -101995,7 +103861,7 @@ entities:
pos: -82.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15385
components:
- type: Transform
@@ -102075,7 +103941,7 @@ entities:
pos: -137.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15395
components:
- type: Transform
@@ -102131,7 +103997,7 @@ entities:
pos: -125.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15402
components:
- type: Transform
@@ -102139,7 +104005,7 @@ entities:
pos: -91.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15403
components:
- type: Transform
@@ -102147,7 +104013,7 @@ entities:
pos: -83.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15404
components:
- type: Transform
@@ -102155,7 +104021,7 @@ entities:
pos: -83.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15405
components:
- type: Transform
@@ -102163,7 +104029,7 @@ entities:
pos: -83.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15406
components:
- type: Transform
@@ -102171,14 +104037,14 @@ entities:
pos: -84.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15407
components:
- type: Transform
pos: -82.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15408
components:
- type: Transform
@@ -102186,7 +104052,7 @@ entities:
pos: -91.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15409
components:
- type: Transform
@@ -102194,7 +104060,7 @@ entities:
pos: -89.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15410
components:
- type: Transform
@@ -102202,7 +104068,7 @@ entities:
pos: -91.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15411
components:
- type: Transform
@@ -102210,7 +104076,7 @@ entities:
pos: -83.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15412
components:
- type: Transform
@@ -102218,14 +104084,14 @@ entities:
pos: -91.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15413
components:
- type: Transform
pos: -90.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15414
components:
- type: Transform
@@ -102233,7 +104099,7 @@ entities:
pos: -89.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15415
components:
- type: Transform
@@ -102241,28 +104107,28 @@ entities:
pos: -124.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15416
components:
- type: Transform
pos: -45.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15417
components:
- type: Transform
pos: -91.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15418
components:
- type: Transform
pos: -91.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15419
components:
- type: Transform
@@ -102299,7 +104165,7 @@ entities:
pos: -69.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15424
components:
- type: Transform
@@ -102307,28 +104173,28 @@ entities:
pos: -75.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15425
components:
- type: Transform
pos: -91.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15426
components:
- type: Transform
pos: -91.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15427
components:
- type: Transform
pos: -87.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15428
components:
- type: Transform
@@ -102336,14 +104202,14 @@ entities:
pos: -50.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15429
components:
- type: Transform
pos: -51.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15430
components:
- type: Transform
@@ -102351,7 +104217,7 @@ entities:
pos: -106.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15431
components:
- type: Transform
@@ -102359,7 +104225,7 @@ entities:
pos: -63.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15432
components:
- type: Transform
@@ -102367,14 +104233,14 @@ entities:
pos: -52.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15433
components:
- type: Transform
pos: -87.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15434
components:
- type: Transform
@@ -102382,7 +104248,7 @@ entities:
pos: -99.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15435
components:
- type: Transform
@@ -102390,7 +104256,7 @@ entities:
pos: -55.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15436
components:
- type: Transform
@@ -102398,7 +104264,7 @@ entities:
pos: -103.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15437
components:
- type: Transform
@@ -102406,7 +104272,7 @@ entities:
pos: -58.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15438
components:
- type: Transform
@@ -102414,7 +104280,7 @@ entities:
pos: -59.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15439
components:
- type: Transform
@@ -102422,7 +104288,7 @@ entities:
pos: -56.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15440
components:
- type: Transform
@@ -102430,7 +104296,7 @@ entities:
pos: -101.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15441
components:
- type: Transform
@@ -102438,7 +104304,7 @@ entities:
pos: -59.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15442
components:
- type: Transform
@@ -102446,7 +104312,7 @@ entities:
pos: -60.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15443
components:
- type: Transform
@@ -102454,7 +104320,7 @@ entities:
pos: -61.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15444
components:
- type: Transform
@@ -102462,7 +104328,7 @@ entities:
pos: -61.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15445
components:
- type: Transform
@@ -102470,7 +104336,7 @@ entities:
pos: -62.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15446
components:
- type: Transform
@@ -102478,7 +104344,7 @@ entities:
pos: -101.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15447
components:
- type: Transform
@@ -102486,7 +104352,7 @@ entities:
pos: -63.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15448
components:
- type: Transform
@@ -102494,7 +104360,7 @@ entities:
pos: -102.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15449
components:
- type: Transform
@@ -102502,7 +104368,7 @@ entities:
pos: -48.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15450
components:
- type: Transform
@@ -102510,7 +104376,7 @@ entities:
pos: -47.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15451
components:
- type: Transform
@@ -102518,7 +104384,7 @@ entities:
pos: -46.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15452
components:
- type: Transform
@@ -102526,7 +104392,7 @@ entities:
pos: -45.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15453
components:
- type: Transform
@@ -102534,7 +104400,7 @@ entities:
pos: -44.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15454
components:
- type: Transform
@@ -102542,7 +104408,7 @@ entities:
pos: -43.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15455
components:
- type: Transform
@@ -102550,7 +104416,7 @@ entities:
pos: -45.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15456
components:
- type: Transform
@@ -102558,14 +104424,14 @@ entities:
pos: -44.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15457
components:
- type: Transform
pos: -85.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15458
components:
- type: Transform
@@ -102573,14 +104439,14 @@ entities:
pos: -102.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15459
components:
- type: Transform
pos: -104.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15460
components:
- type: Transform
@@ -102588,7 +104454,7 @@ entities:
pos: -120.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15461
components:
- type: Transform
@@ -102596,7 +104462,7 @@ entities:
pos: -110.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15462
components:
- type: Transform
@@ -102604,14 +104470,14 @@ entities:
pos: -113.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15463
components:
- type: Transform
pos: -115.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15464
components:
- type: Transform
@@ -102619,7 +104485,7 @@ entities:
pos: -66.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15465
components:
- type: Transform
@@ -102627,7 +104493,7 @@ entities:
pos: -111.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15466
components:
- type: Transform
@@ -102635,7 +104501,7 @@ entities:
pos: -116.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15467
components:
- type: Transform
@@ -102643,7 +104509,7 @@ entities:
pos: -121.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15468
components:
- type: Transform
@@ -102651,7 +104517,7 @@ entities:
pos: -118.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15469
components:
- type: Transform
@@ -102659,35 +104525,35 @@ entities:
pos: -117.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15470
components:
- type: Transform
pos: -119.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15471
components:
- type: Transform
pos: -74.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15472
components:
- type: Transform
pos: -74.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15473
components:
- type: Transform
pos: -75.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15474
components:
- type: Transform
@@ -102695,14 +104561,14 @@ entities:
pos: -105.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15475
components:
- type: Transform
pos: -119.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15476
components:
- type: Transform
@@ -102710,7 +104576,7 @@ entities:
pos: -124.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15477
components:
- type: Transform
@@ -102718,7 +104584,7 @@ entities:
pos: -125.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15478
components:
- type: Transform
@@ -102726,7 +104592,7 @@ entities:
pos: -127.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15479
components:
- type: Transform
@@ -102734,7 +104600,7 @@ entities:
pos: -128.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15480
components:
- type: Transform
@@ -102742,7 +104608,7 @@ entities:
pos: -52.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15481
components:
- type: Transform
@@ -102750,7 +104616,7 @@ entities:
pos: -54.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15482
components:
- type: Transform
@@ -102758,7 +104624,7 @@ entities:
pos: -127.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15483
components:
- type: Transform
@@ -102766,14 +104632,14 @@ entities:
pos: -48.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15484
components:
- type: Transform
pos: -119.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15485
components:
- type: Transform
@@ -102781,21 +104647,21 @@ entities:
pos: -50.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15486
components:
- type: Transform
pos: -119.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15487
components:
- type: Transform
pos: -119.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15488
components:
- type: Transform
@@ -102803,7 +104669,7 @@ entities:
pos: -121.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15489
components:
- type: Transform
@@ -102811,7 +104677,7 @@ entities:
pos: -48.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15490
components:
- type: Transform
@@ -102819,7 +104685,7 @@ entities:
pos: -50.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15491
components:
- type: Transform
@@ -102827,7 +104693,7 @@ entities:
pos: -120.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15492
components:
- type: Transform
@@ -102835,7 +104701,7 @@ entities:
pos: -52.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15493
components:
- type: Transform
@@ -102843,7 +104709,7 @@ entities:
pos: -123.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15494
components:
- type: Transform
@@ -102851,7 +104717,7 @@ entities:
pos: -54.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15495
components:
- type: Transform
@@ -102859,7 +104725,7 @@ entities:
pos: -56.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15496
components:
- type: Transform
@@ -102867,14 +104733,14 @@ entities:
pos: -57.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15497
components:
- type: Transform
pos: -119.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15498
components:
- type: Transform
@@ -102882,7 +104748,7 @@ entities:
pos: -56.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15499
components:
- type: Transform
@@ -102890,7 +104756,7 @@ entities:
pos: -122.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15500
components:
- type: Transform
@@ -102898,7 +104764,7 @@ entities:
pos: -129.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15501
components:
- type: Transform
@@ -102906,7 +104772,7 @@ entities:
pos: -128.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15502
components:
- type: Transform
@@ -102914,7 +104780,7 @@ entities:
pos: -119.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15503
components:
- type: Transform
@@ -102922,7 +104788,7 @@ entities:
pos: -123.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15504
components:
- type: Transform
@@ -102930,7 +104796,7 @@ entities:
pos: -68.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15505
components:
- type: Transform
@@ -102938,7 +104804,7 @@ entities:
pos: -57.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15506
components:
- type: Transform
@@ -102946,7 +104812,7 @@ entities:
pos: -57.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15507
components:
- type: Transform
@@ -102954,7 +104820,7 @@ entities:
pos: -57.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15508
components:
- type: Transform
@@ -102962,7 +104828,7 @@ entities:
pos: -57.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15509
components:
- type: Transform
@@ -102970,7 +104836,7 @@ entities:
pos: -57.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15510
components:
- type: Transform
@@ -102978,7 +104844,7 @@ entities:
pos: -58.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15511
components:
- type: Transform
@@ -102986,7 +104852,7 @@ entities:
pos: -59.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15512
components:
- type: Transform
@@ -102994,7 +104860,7 @@ entities:
pos: -61.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15513
components:
- type: Transform
@@ -103002,7 +104868,7 @@ entities:
pos: -62.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15514
components:
- type: Transform
@@ -103010,14 +104876,14 @@ entities:
pos: -63.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15515
components:
- type: Transform
pos: -119.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15516
components:
- type: Transform
@@ -103025,7 +104891,7 @@ entities:
pos: -59.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15517
components:
- type: Transform
@@ -103033,7 +104899,7 @@ entities:
pos: -61.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15518
components:
- type: Transform
@@ -103041,7 +104907,7 @@ entities:
pos: -60.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15519
components:
- type: Transform
@@ -103049,14 +104915,14 @@ entities:
pos: -63.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15520
components:
- type: Transform
pos: -119.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15521
components:
- type: Transform
@@ -103064,7 +104930,7 @@ entities:
pos: -132.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15522
components:
- type: Transform
@@ -103072,7 +104938,7 @@ entities:
pos: -128.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15523
components:
- type: Transform
@@ -103080,7 +104946,7 @@ entities:
pos: -64.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15524
components:
- type: Transform
@@ -103088,7 +104954,7 @@ entities:
pos: -64.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15525
components:
- type: Transform
@@ -103096,7 +104962,7 @@ entities:
pos: -127.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15526
components:
- type: Transform
@@ -103104,14 +104970,14 @@ entities:
pos: -126.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15527
components:
- type: Transform
pos: -65.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15528
components:
- type: Transform
@@ -103119,21 +104985,21 @@ entities:
pos: -64.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15529
components:
- type: Transform
pos: -65.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15530
components:
- type: Transform
pos: -65.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15531
components:
- type: Transform
@@ -103141,7 +105007,7 @@ entities:
pos: -125.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15532
components:
- type: Transform
@@ -103149,14 +105015,14 @@ entities:
pos: -123.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15533
components:
- type: Transform
pos: -64.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15534
components:
- type: Transform
@@ -103164,7 +105030,7 @@ entities:
pos: -118.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15535
components:
- type: Transform
@@ -103172,7 +105038,7 @@ entities:
pos: -124.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15536
components:
- type: Transform
@@ -103180,7 +105046,7 @@ entities:
pos: -141.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15537
components:
- type: Transform
@@ -103188,7 +105054,7 @@ entities:
pos: -55.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15538
components:
- type: Transform
@@ -103196,7 +105062,7 @@ entities:
pos: -33.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15539
components:
- type: Transform
@@ -103204,7 +105070,7 @@ entities:
pos: -64.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15540
components:
- type: Transform
@@ -103212,7 +105078,7 @@ entities:
pos: -64.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15541
components:
- type: Transform
@@ -103220,7 +105086,7 @@ entities:
pos: -64.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15542
components:
- type: Transform
@@ -103228,7 +105094,7 @@ entities:
pos: -102.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15543
components:
- type: Transform
@@ -103236,7 +105102,7 @@ entities:
pos: -32.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15544
components:
- type: Transform
@@ -103244,7 +105110,7 @@ entities:
pos: -54.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15545
components:
- type: Transform
@@ -103252,7 +105118,7 @@ entities:
pos: -109.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15546
components:
- type: Transform
@@ -103260,7 +105126,7 @@ entities:
pos: -75.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15547
components:
- type: Transform
@@ -103268,7 +105134,7 @@ entities:
pos: -75.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15548
components:
- type: Transform
@@ -103276,7 +105142,7 @@ entities:
pos: -75.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15549
components:
- type: Transform
@@ -103300,7 +105166,7 @@ entities:
pos: -94.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15552
components:
- type: Transform
@@ -103308,7 +105174,7 @@ entities:
pos: -105.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15553
components:
- type: Transform
@@ -103321,7 +105187,7 @@ entities:
pos: -149.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15555
components:
- type: Transform
@@ -103361,7 +105227,7 @@ entities:
pos: -122.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15560
components:
- type: Transform
@@ -103369,7 +105235,7 @@ entities:
pos: -105.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15561
components:
- type: Transform
@@ -103377,14 +105243,14 @@ entities:
pos: -95.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15562
components:
- type: Transform
pos: -45.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15563
components:
- type: Transform
@@ -103392,14 +105258,14 @@ entities:
pos: -130.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15564
components:
- type: Transform
pos: -103.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15565
components:
- type: Transform
@@ -103407,28 +105273,28 @@ entities:
pos: -70.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15566
components:
- type: Transform
pos: -103.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15567
components:
- type: Transform
pos: -103.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15568
components:
- type: Transform
pos: -103.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15569
components:
- type: Transform
@@ -103436,7 +105302,7 @@ entities:
pos: -103.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15570
components:
- type: Transform
@@ -103444,7 +105310,7 @@ entities:
pos: -97.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15571
components:
- type: Transform
@@ -103452,7 +105318,7 @@ entities:
pos: -96.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15572
components:
- type: Transform
@@ -103460,7 +105326,7 @@ entities:
pos: -99.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15573
components:
- type: Transform
@@ -103468,7 +105334,7 @@ entities:
pos: -100.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15574
components:
- type: Transform
@@ -103476,7 +105342,7 @@ entities:
pos: -101.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15575
components:
- type: Transform
@@ -103484,7 +105350,7 @@ entities:
pos: -102.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15576
components:
- type: Transform
@@ -103492,70 +105358,70 @@ entities:
pos: -95.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15577
components:
- type: Transform
pos: -51.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15578
components:
- type: Transform
pos: -51.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15579
components:
- type: Transform
pos: -51.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15580
components:
- type: Transform
pos: -51.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15581
components:
- type: Transform
pos: -51.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15582
components:
- type: Transform
pos: -50.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15583
components:
- type: Transform
pos: -50.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15584
components:
- type: Transform
pos: -50.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15585
components:
- type: Transform
pos: -50.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15586
components:
- type: Transform
@@ -103563,14 +105429,14 @@ entities:
pos: -53.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15587
components:
- type: Transform
pos: -53.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15588
components:
- type: Transform
@@ -103578,7 +105444,7 @@ entities:
pos: -52.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15589
components:
- type: Transform
@@ -103586,7 +105452,7 @@ entities:
pos: -51.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15590
components:
- type: Transform
@@ -103594,7 +105460,7 @@ entities:
pos: -49.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15591
components:
- type: Transform
@@ -103602,7 +105468,7 @@ entities:
pos: -47.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15592
components:
- type: Transform
@@ -103610,7 +105476,7 @@ entities:
pos: -48.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15593
components:
- type: Transform
@@ -103618,7 +105484,7 @@ entities:
pos: -46.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15594
components:
- type: Transform
@@ -103626,7 +105492,7 @@ entities:
pos: -47.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15595
components:
- type: Transform
@@ -103634,7 +105500,7 @@ entities:
pos: -49.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15596
components:
- type: Transform
@@ -103642,7 +105508,7 @@ entities:
pos: -50.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15597
components:
- type: Transform
@@ -103650,7 +105516,7 @@ entities:
pos: -48.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15598
components:
- type: Transform
@@ -103658,7 +105524,7 @@ entities:
pos: -51.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15599
components:
- type: Transform
@@ -103666,7 +105532,7 @@ entities:
pos: -99.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15600
components:
- type: Transform
@@ -103674,7 +105540,7 @@ entities:
pos: -96.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15601
components:
- type: Transform
@@ -103682,28 +105548,28 @@ entities:
pos: -97.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15602
components:
- type: Transform
pos: -54.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15603
components:
- type: Transform
pos: -54.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15604
components:
- type: Transform
pos: -54.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15605
components:
- type: Transform
@@ -103711,7 +105577,7 @@ entities:
pos: -54.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15606
components:
- type: Transform
@@ -103719,7 +105585,7 @@ entities:
pos: -86.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15607
components:
- type: Transform
@@ -103727,7 +105593,7 @@ entities:
pos: -85.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15608
components:
- type: Transform
@@ -103735,7 +105601,7 @@ entities:
pos: -56.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15609
components:
- type: Transform
@@ -103743,119 +105609,119 @@ entities:
pos: -58.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15610
components:
- type: Transform
pos: -55.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15611
components:
- type: Transform
pos: -55.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15612
components:
- type: Transform
pos: -55.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15613
components:
- type: Transform
pos: -55.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15614
components:
- type: Transform
pos: -55.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15615
components:
- type: Transform
pos: -55.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15616
components:
- type: Transform
pos: -54.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15617
components:
- type: Transform
pos: -54.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15618
components:
- type: Transform
pos: -54.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15619
components:
- type: Transform
pos: -54.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15620
components:
- type: Transform
pos: -54.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15621
components:
- type: Transform
pos: -60.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15622
components:
- type: Transform
pos: -60.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15623
components:
- type: Transform
pos: -61.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15624
components:
- type: Transform
pos: -61.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15625
components:
- type: Transform
pos: -61.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15626
components:
- type: Transform
@@ -103863,7 +105729,7 @@ entities:
pos: -59.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15627
components:
- type: Transform
@@ -103871,7 +105737,7 @@ entities:
pos: -60.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15628
components:
- type: Transform
@@ -103879,7 +105745,7 @@ entities:
pos: -59.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15629
components:
- type: Transform
@@ -103887,7 +105753,7 @@ entities:
pos: -61.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15630
components:
- type: Transform
@@ -103895,7 +105761,7 @@ entities:
pos: -62.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15631
components:
- type: Transform
@@ -103903,7 +105769,7 @@ entities:
pos: -64.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15632
components:
- type: Transform
@@ -103911,7 +105777,7 @@ entities:
pos: -65.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15633
components:
- type: Transform
@@ -103919,7 +105785,7 @@ entities:
pos: -120.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15634
components:
- type: Transform
@@ -103927,7 +105793,7 @@ entities:
pos: -62.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15635
components:
- type: Transform
@@ -103935,7 +105801,7 @@ entities:
pos: -65.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15636
components:
- type: Transform
@@ -103943,14 +105809,14 @@ entities:
pos: -63.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15637
components:
- type: Transform
pos: -66.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15638
components:
- type: Transform
@@ -103958,7 +105824,7 @@ entities:
pos: -67.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15639
components:
- type: Transform
@@ -103966,7 +105832,7 @@ entities:
pos: -68.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15640
components:
- type: Transform
@@ -103974,7 +105840,7 @@ entities:
pos: -70.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15641
components:
- type: Transform
@@ -103982,7 +105848,7 @@ entities:
pos: -69.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15642
components:
- type: Transform
@@ -103990,7 +105856,7 @@ entities:
pos: -67.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15643
components:
- type: Transform
@@ -103998,7 +105864,7 @@ entities:
pos: -69.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15644
components:
- type: Transform
@@ -104006,7 +105872,7 @@ entities:
pos: -71.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15645
components:
- type: Transform
@@ -104014,7 +105880,7 @@ entities:
pos: -68.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15646
components:
- type: Transform
@@ -104022,7 +105888,7 @@ entities:
pos: -75.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15647
components:
- type: Transform
@@ -104030,7 +105896,7 @@ entities:
pos: -75.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15648
components:
- type: Transform
@@ -104038,7 +105904,7 @@ entities:
pos: -75.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15649
components:
- type: Transform
@@ -104046,7 +105912,7 @@ entities:
pos: -75.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15650
components:
- type: Transform
@@ -104054,7 +105920,7 @@ entities:
pos: -75.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15651
components:
- type: Transform
@@ -104062,7 +105928,7 @@ entities:
pos: -75.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15652
components:
- type: Transform
@@ -104070,7 +105936,7 @@ entities:
pos: -75.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15653
components:
- type: Transform
@@ -104078,7 +105944,7 @@ entities:
pos: -75.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15654
components:
- type: Transform
@@ -104086,7 +105952,7 @@ entities:
pos: -75.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15655
components:
- type: Transform
@@ -104094,7 +105960,7 @@ entities:
pos: -75.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15656
components:
- type: Transform
@@ -104102,7 +105968,7 @@ entities:
pos: -75.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15657
components:
- type: Transform
@@ -104110,7 +105976,7 @@ entities:
pos: -75.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15658
components:
- type: Transform
@@ -104118,7 +105984,7 @@ entities:
pos: -75.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15659
components:
- type: Transform
@@ -104126,7 +105992,7 @@ entities:
pos: -75.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15660
components:
- type: Transform
@@ -104134,7 +106000,7 @@ entities:
pos: -75.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15661
components:
- type: Transform
@@ -104142,7 +106008,7 @@ entities:
pos: -75.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15662
components:
- type: Transform
@@ -104150,7 +106016,7 @@ entities:
pos: -76.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15663
components:
- type: Transform
@@ -104158,7 +106024,7 @@ entities:
pos: -76.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15664
components:
- type: Transform
@@ -104166,7 +106032,7 @@ entities:
pos: -76.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15665
components:
- type: Transform
@@ -104174,7 +106040,7 @@ entities:
pos: -76.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15666
components:
- type: Transform
@@ -104182,7 +106048,7 @@ entities:
pos: -76.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15667
components:
- type: Transform
@@ -104190,7 +106056,7 @@ entities:
pos: -76.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15668
components:
- type: Transform
@@ -104198,7 +106064,7 @@ entities:
pos: -76.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15669
components:
- type: Transform
@@ -104206,7 +106072,7 @@ entities:
pos: -76.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15670
components:
- type: Transform
@@ -104214,7 +106080,7 @@ entities:
pos: -76.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15671
components:
- type: Transform
@@ -104222,7 +106088,7 @@ entities:
pos: -76.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15672
components:
- type: Transform
@@ -104230,7 +106096,7 @@ entities:
pos: -76.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15673
components:
- type: Transform
@@ -104238,7 +106104,7 @@ entities:
pos: -76.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15674
components:
- type: Transform
@@ -104246,7 +106112,7 @@ entities:
pos: -76.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15675
components:
- type: Transform
@@ -104254,7 +106120,7 @@ entities:
pos: -76.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15676
components:
- type: Transform
@@ -104262,7 +106128,7 @@ entities:
pos: -76.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15677
components:
- type: Transform
@@ -104270,28 +106136,28 @@ entities:
pos: -76.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15678
components:
- type: Transform
pos: -120.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15679
components:
- type: Transform
pos: -104.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15680
components:
- type: Transform
pos: -68.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15681
components:
- type: Transform
@@ -104299,14 +106165,14 @@ entities:
pos: -103.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15682
components:
- type: Transform
pos: -68.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15683
components:
- type: Transform
@@ -104314,7 +106180,7 @@ entities:
pos: -51.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15684
components:
- type: Transform
@@ -104322,7 +106188,7 @@ entities:
pos: -50.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15685
components:
- type: Transform
@@ -104330,7 +106196,7 @@ entities:
pos: -52.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15686
components:
- type: Transform
@@ -104338,7 +106204,7 @@ entities:
pos: -51.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15687
components:
- type: Transform
@@ -104346,7 +106212,7 @@ entities:
pos: -50.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15688
components:
- type: Transform
@@ -104354,14 +106220,14 @@ entities:
pos: -49.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15689
components:
- type: Transform
pos: -120.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15690
components:
- type: Transform
@@ -104369,7 +106235,7 @@ entities:
pos: -71.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15691
components:
- type: Transform
@@ -104377,7 +106243,7 @@ entities:
pos: -71.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15692
components:
- type: Transform
@@ -104385,7 +106251,7 @@ entities:
pos: -71.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15693
components:
- type: Transform
@@ -104393,7 +106259,7 @@ entities:
pos: -71.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15694
components:
- type: Transform
@@ -104401,7 +106267,7 @@ entities:
pos: -57.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15695
components:
- type: Transform
@@ -104409,7 +106275,7 @@ entities:
pos: -57.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15696
components:
- type: Transform
@@ -104417,7 +106283,7 @@ entities:
pos: -57.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15697
components:
- type: Transform
@@ -104425,7 +106291,7 @@ entities:
pos: -57.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15698
components:
- type: Transform
@@ -104433,7 +106299,7 @@ entities:
pos: -58.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15699
components:
- type: Transform
@@ -104441,7 +106307,7 @@ entities:
pos: -58.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15700
components:
- type: Transform
@@ -104449,7 +106315,7 @@ entities:
pos: -58.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15701
components:
- type: Transform
@@ -104457,7 +106323,7 @@ entities:
pos: -58.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15702
components:
- type: Transform
@@ -104465,7 +106331,7 @@ entities:
pos: -58.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15703
components:
- type: Transform
@@ -104473,7 +106339,7 @@ entities:
pos: -70.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15704
components:
- type: Transform
@@ -104481,7 +106347,7 @@ entities:
pos: -70.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15705
components:
- type: Transform
@@ -104489,7 +106355,7 @@ entities:
pos: -70.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15706
components:
- type: Transform
@@ -104497,7 +106363,7 @@ entities:
pos: -70.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15707
components:
- type: Transform
@@ -104505,7 +106371,7 @@ entities:
pos: -70.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15708
components:
- type: Transform
@@ -104513,7 +106379,7 @@ entities:
pos: -70.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15709
components:
- type: Transform
@@ -104525,14 +106391,14 @@ entities:
pos: -64.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15711
components:
- type: Transform
pos: -64.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15712
components:
- type: Transform
@@ -104548,7 +106414,7 @@ entities:
pos: -137.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15714
components:
- type: Transform
@@ -104564,7 +106430,7 @@ entities:
pos: -30.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15716
components:
- type: Transform
@@ -104588,7 +106454,7 @@ entities:
pos: -24.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15719
components:
- type: Transform
@@ -104596,7 +106462,7 @@ entities:
pos: -22.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15720
components:
- type: Transform
@@ -104604,7 +106470,7 @@ entities:
pos: -23.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15721
components:
- type: Transform
@@ -104612,7 +106478,7 @@ entities:
pos: -40.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15722
components:
- type: Transform
@@ -104620,7 +106486,7 @@ entities:
pos: -39.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15723
components:
- type: Transform
@@ -104628,7 +106494,7 @@ entities:
pos: -37.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15724
components:
- type: Transform
@@ -104636,7 +106502,7 @@ entities:
pos: -35.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15725
components:
- type: Transform
@@ -104644,7 +106510,7 @@ entities:
pos: -41.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15726
components:
- type: Transform
@@ -104652,7 +106518,7 @@ entities:
pos: -100.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15727
components:
- type: Transform
@@ -104660,7 +106526,7 @@ entities:
pos: -101.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15728
components:
- type: Transform
@@ -104668,7 +106534,7 @@ entities:
pos: -141.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15729
components:
- type: Transform
@@ -104676,7 +106542,7 @@ entities:
pos: -95.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15730
components:
- type: Transform
@@ -104684,7 +106550,7 @@ entities:
pos: -41.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15731
components:
- type: Transform
@@ -104692,7 +106558,7 @@ entities:
pos: -41.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15732
components:
- type: Transform
@@ -104700,7 +106566,7 @@ entities:
pos: -105.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15733
components:
- type: Transform
@@ -104708,7 +106574,7 @@ entities:
pos: -21.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15734
components:
- type: Transform
@@ -104716,7 +106582,7 @@ entities:
pos: -105.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15735
components:
- type: Transform
@@ -104724,7 +106590,7 @@ entities:
pos: -97.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15736
components:
- type: Transform
@@ -104738,7 +106604,7 @@ entities:
pos: -60.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15738
components:
- type: Transform
@@ -104746,7 +106612,7 @@ entities:
pos: -58.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15739
components:
- type: Transform
@@ -104754,7 +106620,7 @@ entities:
pos: -63.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15740
components:
- type: Transform
@@ -104762,7 +106628,7 @@ entities:
pos: -66.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15741
components:
- type: Transform
@@ -104770,7 +106636,7 @@ entities:
pos: -69.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15742
components:
- type: Transform
@@ -104778,7 +106644,7 @@ entities:
pos: -70.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15743
components:
- type: Transform
@@ -104786,7 +106652,7 @@ entities:
pos: -65.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15744
components:
- type: Transform
@@ -104794,7 +106660,7 @@ entities:
pos: -119.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15745
components:
- type: Transform
@@ -104814,7 +106680,7 @@ entities:
pos: -95.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15748
components:
- type: Transform
@@ -104835,14 +106701,14 @@ entities:
pos: -95.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15751
components:
- type: Transform
pos: -58.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15752
components:
- type: Transform
@@ -104850,7 +106716,7 @@ entities:
pos: -82.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15753
components:
- type: Transform
@@ -104866,7 +106732,7 @@ entities:
pos: -138.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15755
components:
- type: Transform
@@ -104884,7 +106750,7 @@ entities:
pos: -139.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15757
components:
- type: Transform
@@ -104897,7 +106763,7 @@ entities:
pos: -67.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15759
components:
- type: Transform
@@ -104925,7 +106791,7 @@ entities:
pos: -68.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15763
components:
- type: Transform
@@ -104939,7 +106805,7 @@ entities:
pos: -69.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15765
components:
- type: Transform
@@ -104947,7 +106813,7 @@ entities:
pos: -41.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15766
components:
- type: Transform
@@ -104981,7 +106847,7 @@ entities:
pos: -71.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15771
components:
- type: Transform
@@ -104989,7 +106855,7 @@ entities:
pos: -73.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15772
components:
- type: Transform
@@ -104997,7 +106863,7 @@ entities:
pos: -68.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15773
components:
- type: Transform
@@ -105023,7 +106889,7 @@ entities:
pos: -65.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15777
components:
- type: Transform
@@ -105031,7 +106897,7 @@ entities:
pos: -96.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15778
components:
- type: Transform
@@ -105039,7 +106905,7 @@ entities:
pos: -60.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15779
components:
- type: Transform
@@ -105055,7 +106921,7 @@ entities:
pos: -89.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15781
components:
- type: Transform
@@ -105063,14 +106929,14 @@ entities:
pos: -60.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15782
components:
- type: Transform
pos: -67.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15783
components:
- type: Transform
@@ -105078,14 +106944,14 @@ entities:
pos: -62.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15784
components:
- type: Transform
pos: -75.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15785
components:
- type: Transform
@@ -105101,7 +106967,7 @@ entities:
pos: -37.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15787
components:
- type: Transform
@@ -105109,7 +106975,7 @@ entities:
pos: -37.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15788
components:
- type: Transform
@@ -105117,7 +106983,7 @@ entities:
pos: -60.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15789
components:
- type: Transform
@@ -105130,7 +106996,7 @@ entities:
pos: -141.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15791
components:
- type: Transform
@@ -105138,14 +107004,14 @@ entities:
pos: -74.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15792
components:
- type: Transform
pos: -36.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15793
components:
- type: Transform
@@ -105153,7 +107019,7 @@ entities:
pos: -62.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15794
components:
- type: Transform
@@ -105183,7 +107049,7 @@ entities:
pos: -72.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15798
components:
- type: Transform
@@ -105191,7 +107057,7 @@ entities:
pos: -64.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15799
components:
- type: Transform
@@ -105199,7 +107065,7 @@ entities:
pos: -51.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15800
components:
- type: Transform
@@ -105207,7 +107073,7 @@ entities:
pos: -49.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15801
components:
- type: Transform
@@ -105215,7 +107081,7 @@ entities:
pos: -72.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15802
components:
- type: Transform
@@ -105223,7 +107089,7 @@ entities:
pos: -64.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15803
components:
- type: Transform
@@ -105238,7 +107104,7 @@ entities:
pos: -98.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15805
components:
- type: Transform
@@ -105246,7 +107112,7 @@ entities:
pos: -72.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15806
components:
- type: Transform
@@ -105265,7 +107131,7 @@ entities:
pos: -124.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15809
components:
- type: Transform
@@ -105273,7 +107139,7 @@ entities:
pos: -62.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15810
components:
- type: Transform
@@ -105281,7 +107147,7 @@ entities:
pos: -37.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15811
components:
- type: Transform
@@ -105295,7 +107161,7 @@ entities:
pos: -19.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15813
components:
- type: Transform
@@ -105303,7 +107169,7 @@ entities:
pos: -62.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15814
components:
- type: Transform
@@ -105311,7 +107177,7 @@ entities:
pos: -24.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15815
components:
- type: Transform
@@ -105319,7 +107185,7 @@ entities:
pos: -23.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15816
components:
- type: Transform
@@ -105327,7 +107193,7 @@ entities:
pos: -21.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15817
components:
- type: Transform
@@ -105335,7 +107201,7 @@ entities:
pos: -33.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15818
components:
- type: Transform
@@ -105348,7 +107214,7 @@ entities:
pos: -58.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15820
components:
- type: Transform
@@ -105356,7 +107222,7 @@ entities:
pos: -22.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15821
components:
- type: Transform
@@ -105376,7 +107242,7 @@ entities:
pos: -141.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15824
components:
- type: Transform
@@ -105384,7 +107250,7 @@ entities:
pos: -140.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15825
components:
- type: Transform
@@ -105392,7 +107258,7 @@ entities:
pos: -68.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15826
components:
- type: Transform
@@ -105407,7 +107273,7 @@ entities:
pos: -68.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15828
components:
- type: Transform
@@ -105423,7 +107289,7 @@ entities:
pos: -60.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15830
components:
- type: Transform
@@ -105431,7 +107297,7 @@ entities:
pos: -17.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15831
components:
- type: Transform
@@ -105439,7 +107305,7 @@ entities:
pos: -15.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15832
components:
- type: Transform
@@ -105447,7 +107313,7 @@ entities:
pos: -15.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15833
components:
- type: Transform
@@ -105455,7 +107321,7 @@ entities:
pos: -15.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15834
components:
- type: Transform
@@ -105463,7 +107329,7 @@ entities:
pos: -16.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15835
components:
- type: Transform
@@ -105471,7 +107337,7 @@ entities:
pos: -15.5,-67.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15836
components:
- type: Transform
@@ -105479,7 +107345,7 @@ entities:
pos: -14.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15837
components:
- type: Transform
@@ -105487,7 +107353,7 @@ entities:
pos: -16.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15838
components:
- type: Transform
@@ -105495,7 +107361,7 @@ entities:
pos: -18.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15839
components:
- type: Transform
@@ -105503,7 +107369,7 @@ entities:
pos: -15.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15840
components:
- type: Transform
@@ -105511,7 +107377,7 @@ entities:
pos: -16.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15841
components:
- type: Transform
@@ -105519,7 +107385,7 @@ entities:
pos: -15.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15842
components:
- type: Transform
@@ -105527,7 +107393,7 @@ entities:
pos: -17.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15843
components:
- type: Transform
@@ -105535,7 +107401,7 @@ entities:
pos: -15.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15844
components:
- type: Transform
@@ -105543,7 +107409,7 @@ entities:
pos: -17.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15845
components:
- type: Transform
@@ -105551,7 +107417,7 @@ entities:
pos: -19.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15846
components:
- type: Transform
@@ -105559,7 +107425,7 @@ entities:
pos: -18.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15847
components:
- type: Transform
@@ -105567,7 +107433,7 @@ entities:
pos: -15.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15848
components:
- type: Transform
@@ -105575,7 +107441,7 @@ entities:
pos: -15.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15849
components:
- type: Transform
@@ -105583,7 +107449,7 @@ entities:
pos: -108.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15850
components:
- type: Transform
@@ -105591,14 +107457,14 @@ entities:
pos: -33.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15851
components:
- type: Transform
pos: -119.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15852
components:
- type: Transform
@@ -105606,7 +107472,7 @@ entities:
pos: -80.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15853
components:
- type: Transform
@@ -105614,7 +107480,7 @@ entities:
pos: -79.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15854
components:
- type: Transform
@@ -105622,7 +107488,7 @@ entities:
pos: -83.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15855
components:
- type: Transform
@@ -105630,7 +107496,7 @@ entities:
pos: -84.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15856
components:
- type: Transform
@@ -105638,7 +107504,7 @@ entities:
pos: -106.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15857
components:
- type: Transform
@@ -105646,7 +107512,7 @@ entities:
pos: -105.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15858
components:
- type: Transform
@@ -105654,7 +107520,7 @@ entities:
pos: -104.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15859
components:
- type: Transform
@@ -105662,7 +107528,7 @@ entities:
pos: -86.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15860
components:
- type: Transform
@@ -105670,7 +107536,7 @@ entities:
pos: -102.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15861
components:
- type: Transform
@@ -105678,7 +107544,7 @@ entities:
pos: -101.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15862
components:
- type: Transform
@@ -105686,7 +107552,7 @@ entities:
pos: -98.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15863
components:
- type: Transform
@@ -105694,7 +107560,7 @@ entities:
pos: -97.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15864
components:
- type: Transform
@@ -105702,7 +107568,7 @@ entities:
pos: -100.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15865
components:
- type: Transform
@@ -105710,7 +107576,7 @@ entities:
pos: -97.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15866
components:
- type: Transform
@@ -105718,14 +107584,14 @@ entities:
pos: -98.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15867
components:
- type: Transform
pos: -94.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15868
components:
- type: Transform
@@ -105733,7 +107599,7 @@ entities:
pos: -95.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15869
components:
- type: Transform
@@ -105741,7 +107607,7 @@ entities:
pos: -94.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15870
components:
- type: Transform
@@ -105749,7 +107615,7 @@ entities:
pos: -96.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15871
components:
- type: Transform
@@ -105757,7 +107623,7 @@ entities:
pos: -88.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15872
components:
- type: Transform
@@ -105765,7 +107631,7 @@ entities:
pos: -98.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15873
components:
- type: Transform
@@ -105773,7 +107639,7 @@ entities:
pos: -97.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15874
components:
- type: Transform
@@ -105781,7 +107647,7 @@ entities:
pos: -98.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15875
components:
- type: Transform
@@ -105789,7 +107655,7 @@ entities:
pos: -97.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15876
components:
- type: Transform
@@ -105797,7 +107663,7 @@ entities:
pos: -98.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15877
components:
- type: Transform
@@ -105805,7 +107671,7 @@ entities:
pos: -97.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15878
components:
- type: Transform
@@ -105813,7 +107679,7 @@ entities:
pos: -95.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15879
components:
- type: Transform
@@ -105821,7 +107687,7 @@ entities:
pos: -96.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15880
components:
- type: Transform
@@ -105829,7 +107695,7 @@ entities:
pos: -96.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15881
components:
- type: Transform
@@ -105837,7 +107703,7 @@ entities:
pos: -96.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15882
components:
- type: Transform
@@ -105845,7 +107711,7 @@ entities:
pos: -96.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15883
components:
- type: Transform
@@ -105853,7 +107719,7 @@ entities:
pos: -94.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15884
components:
- type: Transform
@@ -105861,7 +107727,7 @@ entities:
pos: -94.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15885
components:
- type: Transform
@@ -105869,7 +107735,7 @@ entities:
pos: -94.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15886
components:
- type: Transform
@@ -105877,7 +107743,7 @@ entities:
pos: -94.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15887
components:
- type: Transform
@@ -105885,7 +107751,7 @@ entities:
pos: -94.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15888
components:
- type: Transform
@@ -105893,7 +107759,7 @@ entities:
pos: -94.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15889
components:
- type: Transform
@@ -105901,7 +107767,7 @@ entities:
pos: -96.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15890
components:
- type: Transform
@@ -105909,7 +107775,7 @@ entities:
pos: -96.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15891
components:
- type: Transform
@@ -105917,7 +107783,7 @@ entities:
pos: -28.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15892
components:
- type: Transform
@@ -105925,7 +107791,7 @@ entities:
pos: -86.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15893
components:
- type: Transform
@@ -105933,63 +107799,63 @@ entities:
pos: -96.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15894
components:
- type: Transform
pos: -96.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15895
components:
- type: Transform
pos: -96.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15896
components:
- type: Transform
pos: -96.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15897
components:
- type: Transform
pos: -96.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15898
components:
- type: Transform
pos: -94.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15899
components:
- type: Transform
pos: -94.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15900
components:
- type: Transform
pos: -94.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15901
components:
- type: Transform
pos: -94.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15902
components:
- type: Transform
@@ -105997,7 +107863,7 @@ entities:
pos: -93.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15903
components:
- type: Transform
@@ -106005,7 +107871,7 @@ entities:
pos: -92.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15904
components:
- type: Transform
@@ -106013,35 +107879,35 @@ entities:
pos: -91.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15905
components:
- type: Transform
pos: -95.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15906
components:
- type: Transform
pos: -95.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15907
components:
- type: Transform
pos: -95.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15908
components:
- type: Transform
pos: -95.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15909
components:
- type: Transform
@@ -106049,14 +107915,14 @@ entities:
pos: -97.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15910
components:
- type: Transform
pos: -96.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15911
components:
- type: Transform
@@ -106064,7 +107930,7 @@ entities:
pos: -95.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15912
components:
- type: Transform
@@ -106072,7 +107938,7 @@ entities:
pos: -94.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15913
components:
- type: Transform
@@ -106080,42 +107946,42 @@ entities:
pos: -93.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15914
components:
- type: Transform
pos: -92.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15915
components:
- type: Transform
pos: -92.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15916
components:
- type: Transform
pos: -92.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15917
components:
- type: Transform
pos: -90.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15918
components:
- type: Transform
pos: -90.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15919
components:
- type: Transform
@@ -106123,7 +107989,7 @@ entities:
pos: -91.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15920
components:
- type: Transform
@@ -106131,7 +107997,7 @@ entities:
pos: -89.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15921
components:
- type: Transform
@@ -106139,7 +108005,7 @@ entities:
pos: -89.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15922
components:
- type: Transform
@@ -106147,7 +108013,7 @@ entities:
pos: -87.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15923
components:
- type: Transform
@@ -106155,7 +108021,7 @@ entities:
pos: -88.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15924
components:
- type: Transform
@@ -106163,7 +108029,7 @@ entities:
pos: -90.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15925
components:
- type: Transform
@@ -106171,7 +108037,7 @@ entities:
pos: -95.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15926
components:
- type: Transform
@@ -106179,7 +108045,7 @@ entities:
pos: -94.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15927
components:
- type: Transform
@@ -106187,7 +108053,7 @@ entities:
pos: -93.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15928
components:
- type: Transform
@@ -106195,7 +108061,7 @@ entities:
pos: -91.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15929
components:
- type: Transform
@@ -106203,7 +108069,7 @@ entities:
pos: -89.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15930
components:
- type: Transform
@@ -106211,7 +108077,7 @@ entities:
pos: -87.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15931
components:
- type: Transform
@@ -106219,7 +108085,7 @@ entities:
pos: -84.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15932
components:
- type: Transform
@@ -106227,7 +108093,7 @@ entities:
pos: -93.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15933
components:
- type: Transform
@@ -106235,7 +108101,7 @@ entities:
pos: -92.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15934
components:
- type: Transform
@@ -106243,7 +108109,7 @@ entities:
pos: -90.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15935
components:
- type: Transform
@@ -106251,7 +108117,7 @@ entities:
pos: -89.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15936
components:
- type: Transform
@@ -106259,7 +108125,7 @@ entities:
pos: -87.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15937
components:
- type: Transform
@@ -106267,7 +108133,7 @@ entities:
pos: -86.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15938
components:
- type: Transform
@@ -106275,7 +108141,7 @@ entities:
pos: -85.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15939
components:
- type: Transform
@@ -106283,14 +108149,14 @@ entities:
pos: -85.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15940
components:
- type: Transform
pos: -96.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15941
components:
- type: Transform
@@ -106298,7 +108164,7 @@ entities:
pos: -28.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15942
components:
- type: Transform
@@ -106306,7 +108172,7 @@ entities:
pos: -93.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15943
components:
- type: Transform
@@ -106314,7 +108180,7 @@ entities:
pos: -28.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15944
components:
- type: Transform
@@ -106322,7 +108188,7 @@ entities:
pos: -94.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15945
components:
- type: Transform
@@ -106330,7 +108196,7 @@ entities:
pos: -92.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15946
components:
- type: Transform
@@ -106338,7 +108204,7 @@ entities:
pos: -92.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15947
components:
- type: Transform
@@ -106346,7 +108212,7 @@ entities:
pos: -92.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15948
components:
- type: Transform
@@ -106354,7 +108220,7 @@ entities:
pos: -92.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15949
components:
- type: Transform
@@ -106362,7 +108228,7 @@ entities:
pos: -91.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15950
components:
- type: Transform
@@ -106370,7 +108236,7 @@ entities:
pos: -91.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15951
components:
- type: Transform
@@ -106378,7 +108244,7 @@ entities:
pos: -91.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15952
components:
- type: Transform
@@ -106386,7 +108252,7 @@ entities:
pos: -91.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15953
components:
- type: Transform
@@ -106394,7 +108260,7 @@ entities:
pos: -91.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15954
components:
- type: Transform
@@ -106402,7 +108268,7 @@ entities:
pos: -83.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15955
components:
- type: Transform
@@ -106410,7 +108276,7 @@ entities:
pos: -84.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15956
components:
- type: Transform
@@ -106418,7 +108284,7 @@ entities:
pos: -85.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15957
components:
- type: Transform
@@ -106426,7 +108292,7 @@ entities:
pos: -87.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15958
components:
- type: Transform
@@ -106434,7 +108300,7 @@ entities:
pos: -89.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15959
components:
- type: Transform
@@ -106442,7 +108308,7 @@ entities:
pos: -90.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15960
components:
- type: Transform
@@ -106450,7 +108316,7 @@ entities:
pos: -88.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15961
components:
- type: Transform
@@ -106458,7 +108324,7 @@ entities:
pos: -91.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15962
components:
- type: Transform
@@ -106466,7 +108332,7 @@ entities:
pos: -82.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15963
components:
- type: Transform
@@ -106474,7 +108340,7 @@ entities:
pos: -90.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15964
components:
- type: Transform
@@ -106482,7 +108348,7 @@ entities:
pos: -85.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15965
components:
- type: Transform
@@ -106490,7 +108356,7 @@ entities:
pos: -16.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15966
components:
- type: Transform
@@ -106498,7 +108364,7 @@ entities:
pos: -18.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15967
components:
- type: Transform
@@ -106506,7 +108372,7 @@ entities:
pos: -21.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15968
components:
- type: Transform
@@ -106514,7 +108380,7 @@ entities:
pos: -118.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15969
components:
- type: Transform
@@ -106522,7 +108388,7 @@ entities:
pos: -91.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15970
components:
- type: Transform
@@ -106530,7 +108396,7 @@ entities:
pos: -92.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15971
components:
- type: Transform
@@ -106538,7 +108404,7 @@ entities:
pos: -92.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15972
components:
- type: Transform
@@ -106546,14 +108412,14 @@ entities:
pos: -92.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15973
components:
- type: Transform
pos: -82.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15974
components:
- type: Transform
@@ -106561,7 +108427,7 @@ entities:
pos: -84.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15975
components:
- type: Transform
@@ -106569,21 +108435,21 @@ entities:
pos: -83.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15976
components:
- type: Transform
pos: -82.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15977
components:
- type: Transform
pos: -88.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15978
components:
- type: Transform
@@ -106591,7 +108457,7 @@ entities:
pos: -82.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15979
components:
- type: Transform
@@ -106599,7 +108465,7 @@ entities:
pos: -83.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15980
components:
- type: Transform
@@ -106607,35 +108473,35 @@ entities:
pos: -81.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15981
components:
- type: Transform
pos: -81.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15982
components:
- type: Transform
pos: -81.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15983
components:
- type: Transform
pos: -81.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15984
components:
- type: Transform
pos: -82.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15985
components:
- type: Transform
@@ -106643,14 +108509,14 @@ entities:
pos: -81.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15986
components:
- type: Transform
pos: -82.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15987
components:
- type: Transform
@@ -106658,7 +108524,7 @@ entities:
pos: -81.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15988
components:
- type: Transform
@@ -106666,7 +108532,7 @@ entities:
pos: -80.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15989
components:
- type: Transform
@@ -106674,7 +108540,7 @@ entities:
pos: -78.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15990
components:
- type: Transform
@@ -106682,7 +108548,7 @@ entities:
pos: -77.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15991
components:
- type: Transform
@@ -106690,21 +108556,21 @@ entities:
pos: -79.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15992
components:
- type: Transform
pos: -80.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15993
components:
- type: Transform
pos: -100.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15994
components:
- type: Transform
@@ -106712,63 +108578,63 @@ entities:
pos: -114.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 15995
components:
- type: Transform
pos: -104.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15996
components:
- type: Transform
pos: -104.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15997
components:
- type: Transform
pos: -104.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15998
components:
- type: Transform
pos: -104.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 15999
components:
- type: Transform
pos: -104.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16000
components:
- type: Transform
pos: -90.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16001
components:
- type: Transform
pos: -104.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16002
components:
- type: Transform
pos: -104.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16003
components:
- type: Transform
@@ -106776,14 +108642,14 @@ entities:
pos: -85.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16004
components:
- type: Transform
pos: -104.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16005
components:
- type: Transform
@@ -106791,7 +108657,7 @@ entities:
pos: -98.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16006
components:
- type: Transform
@@ -106799,7 +108665,7 @@ entities:
pos: -89.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16007
components:
- type: Transform
@@ -106807,14 +108673,14 @@ entities:
pos: -90.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16008
components:
- type: Transform
pos: -103.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16009
components:
- type: Transform
@@ -106822,7 +108688,7 @@ entities:
pos: -103.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16010
components:
- type: Transform
@@ -106830,7 +108696,7 @@ entities:
pos: -102.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16011
components:
- type: Transform
@@ -106838,14 +108704,14 @@ entities:
pos: -105.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16012
components:
- type: Transform
pos: -75.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16013
components:
- type: Transform
@@ -106853,7 +108719,7 @@ entities:
pos: -124.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16014
components:
- type: Transform
@@ -106861,7 +108727,7 @@ entities:
pos: -50.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16015
components:
- type: Transform
@@ -106869,14 +108735,14 @@ entities:
pos: -28.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16016
components:
- type: Transform
pos: -51.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16017
components:
- type: Transform
@@ -106884,14 +108750,14 @@ entities:
pos: -32.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16018
components:
- type: Transform
pos: -40.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16019
components:
- type: Transform
@@ -106899,7 +108765,7 @@ entities:
pos: -115.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16020
components:
- type: Transform
@@ -106907,7 +108773,7 @@ entities:
pos: -86.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16021
components:
- type: Transform
@@ -106915,7 +108781,7 @@ entities:
pos: -123.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16022
components:
- type: Transform
@@ -106923,7 +108789,7 @@ entities:
pos: -114.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16023
components:
- type: Transform
@@ -106931,7 +108797,7 @@ entities:
pos: -133.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16024
components:
- type: Transform
@@ -106939,14 +108805,14 @@ entities:
pos: -23.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16025
components:
- type: Transform
pos: -23.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16026
components:
- type: Transform
@@ -106954,7 +108820,7 @@ entities:
pos: -85.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16027
components:
- type: Transform
@@ -106962,42 +108828,42 @@ entities:
pos: -56.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16028
components:
- type: Transform
pos: -100.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16029
components:
- type: Transform
pos: -84.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16030
components:
- type: Transform
pos: -85.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16031
components:
- type: Transform
pos: -41.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16032
components:
- type: Transform
pos: -23.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16033
components:
- type: Transform
@@ -107005,7 +108871,7 @@ entities:
pos: -47.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16034
components:
- type: Transform
@@ -107013,7 +108879,7 @@ entities:
pos: -28.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16035
components:
- type: Transform
@@ -107021,7 +108887,7 @@ entities:
pos: -117.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16036
components:
- type: Transform
@@ -107029,7 +108895,7 @@ entities:
pos: -37.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16037
components:
- type: Transform
@@ -107037,7 +108903,7 @@ entities:
pos: -23.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16038
components:
- type: Transform
@@ -107045,21 +108911,21 @@ entities:
pos: -15.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16039
components:
- type: Transform
pos: -104.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16040
components:
- type: Transform
pos: -28.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16041
components:
- type: Transform
@@ -107067,21 +108933,21 @@ entities:
pos: -45.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16042
components:
- type: Transform
pos: -42.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16043
components:
- type: Transform
pos: -103.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16044
components:
- type: Transform
@@ -107089,14 +108955,14 @@ entities:
pos: -57.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16045
components:
- type: Transform
pos: -58.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16046
components:
- type: Transform
@@ -107104,14 +108970,14 @@ entities:
pos: -73.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16047
components:
- type: Transform
pos: -58.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16048
components:
- type: Transform
@@ -107119,7 +108985,7 @@ entities:
pos: -90.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16049
components:
- type: Transform
@@ -107127,7 +108993,7 @@ entities:
pos: -47.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16050
components:
- type: Transform
@@ -107135,14 +109001,14 @@ entities:
pos: -51.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16051
components:
- type: Transform
pos: -100.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16052
components:
- type: Transform
@@ -107150,7 +109016,7 @@ entities:
pos: -96.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16053
components:
- type: Transform
@@ -107158,7 +109024,7 @@ entities:
pos: -99.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16054
components:
- type: Transform
@@ -107166,28 +109032,28 @@ entities:
pos: -98.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16055
components:
- type: Transform
pos: -56.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16056
components:
- type: Transform
pos: -99.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16057
components:
- type: Transform
pos: -99.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16058
components:
- type: Transform
@@ -107195,7 +109061,7 @@ entities:
pos: -98.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16059
components:
- type: Transform
@@ -107203,14 +109069,14 @@ entities:
pos: -65.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16060
components:
- type: Transform
pos: -58.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16061
components:
- type: Transform
@@ -107218,14 +109084,14 @@ entities:
pos: -99.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16062
components:
- type: Transform
pos: -104.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16063
components:
- type: Transform
@@ -107233,7 +109099,7 @@ entities:
pos: -45.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16064
components:
- type: Transform
@@ -107241,7 +109107,7 @@ entities:
pos: -102.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16065
components:
- type: Transform
@@ -107249,7 +109115,7 @@ entities:
pos: -94.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16066
components:
- type: Transform
@@ -107257,7 +109123,7 @@ entities:
pos: -63.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16067
components:
- type: Transform
@@ -107265,14 +109131,14 @@ entities:
pos: -119.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16068
components:
- type: Transform
pos: -119.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16069
components:
- type: Transform
@@ -107280,7 +109146,7 @@ entities:
pos: -114.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16070
components:
- type: Transform
@@ -107288,7 +109154,7 @@ entities:
pos: -113.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16071
components:
- type: Transform
@@ -107296,7 +109162,7 @@ entities:
pos: -114.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16072
components:
- type: Transform
@@ -107304,28 +109170,28 @@ entities:
pos: -113.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16073
components:
- type: Transform
pos: -110.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16074
components:
- type: Transform
pos: -110.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16075
components:
- type: Transform
pos: -109.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16076
components:
- type: Transform
@@ -107333,14 +109199,14 @@ entities:
pos: -110.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16077
components:
- type: Transform
pos: -109.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16078
components:
- type: Transform
@@ -107348,7 +109214,7 @@ entities:
pos: -113.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16079
components:
- type: Transform
@@ -107356,7 +109222,7 @@ entities:
pos: -122.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16080
components:
- type: Transform
@@ -107364,7 +109230,7 @@ entities:
pos: -121.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16081
components:
- type: Transform
@@ -107372,7 +109238,7 @@ entities:
pos: -110.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16082
components:
- type: Transform
@@ -107380,7 +109246,7 @@ entities:
pos: -111.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16083
components:
- type: Transform
@@ -107388,7 +109254,7 @@ entities:
pos: -112.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16084
components:
- type: Transform
@@ -107396,7 +109262,7 @@ entities:
pos: -115.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16085
components:
- type: Transform
@@ -107404,7 +109270,7 @@ entities:
pos: -116.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16086
components:
- type: Transform
@@ -107412,7 +109278,7 @@ entities:
pos: -117.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16087
components:
- type: Transform
@@ -107420,7 +109286,7 @@ entities:
pos: -118.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16088
components:
- type: Transform
@@ -107428,7 +109294,7 @@ entities:
pos: -129.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16089
components:
- type: Transform
@@ -107436,7 +109302,7 @@ entities:
pos: -130.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16090
components:
- type: Transform
@@ -107444,7 +109310,7 @@ entities:
pos: -126.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16091
components:
- type: Transform
@@ -107452,7 +109318,7 @@ entities:
pos: -131.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16092
components:
- type: Transform
@@ -107460,7 +109326,7 @@ entities:
pos: -113.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16093
components:
- type: Transform
@@ -107468,7 +109334,7 @@ entities:
pos: -121.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16094
components:
- type: Transform
@@ -107476,7 +109342,7 @@ entities:
pos: -122.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16095
components:
- type: Transform
@@ -107484,7 +109350,7 @@ entities:
pos: -123.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16096
components:
- type: Transform
@@ -107492,7 +109358,7 @@ entities:
pos: -125.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16097
components:
- type: Transform
@@ -107500,7 +109366,7 @@ entities:
pos: -127.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16098
components:
- type: Transform
@@ -107508,7 +109374,7 @@ entities:
pos: -128.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16099
components:
- type: Transform
@@ -107516,7 +109382,7 @@ entities:
pos: -111.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16100
components:
- type: Transform
@@ -107524,7 +109390,7 @@ entities:
pos: -112.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16101
components:
- type: Transform
@@ -107532,7 +109398,7 @@ entities:
pos: -114.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16102
components:
- type: Transform
@@ -107540,7 +109406,7 @@ entities:
pos: -116.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16103
components:
- type: Transform
@@ -107548,7 +109414,7 @@ entities:
pos: -117.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16104
components:
- type: Transform
@@ -107556,7 +109422,7 @@ entities:
pos: -118.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16105
components:
- type: Transform
@@ -107564,7 +109430,7 @@ entities:
pos: -126.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16106
components:
- type: Transform
@@ -107572,7 +109438,7 @@ entities:
pos: -124.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16107
components:
- type: Transform
@@ -107580,7 +109446,7 @@ entities:
pos: -125.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16108
components:
- type: Transform
@@ -107588,7 +109454,7 @@ entities:
pos: -129.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16109
components:
- type: Transform
@@ -107596,7 +109462,7 @@ entities:
pos: -130.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16110
components:
- type: Transform
@@ -107604,7 +109470,7 @@ entities:
pos: -131.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16111
components:
- type: Transform
@@ -107612,7 +109478,7 @@ entities:
pos: -132.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16112
components:
- type: Transform
@@ -107620,7 +109486,7 @@ entities:
pos: -132.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16113
components:
- type: Transform
@@ -107628,7 +109494,7 @@ entities:
pos: -133.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16114
components:
- type: Transform
@@ -107636,7 +109502,7 @@ entities:
pos: -134.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16115
components:
- type: Transform
@@ -107644,7 +109510,7 @@ entities:
pos: -134.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16116
components:
- type: Transform
@@ -107652,7 +109518,7 @@ entities:
pos: -134.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16117
components:
- type: Transform
@@ -107660,7 +109526,7 @@ entities:
pos: -134.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16118
components:
- type: Transform
@@ -107668,7 +109534,7 @@ entities:
pos: -134.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16119
components:
- type: Transform
@@ -107676,7 +109542,7 @@ entities:
pos: -133.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16120
components:
- type: Transform
@@ -107684,7 +109550,7 @@ entities:
pos: -133.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16121
components:
- type: Transform
@@ -107692,7 +109558,7 @@ entities:
pos: -87.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16122
components:
- type: Transform
@@ -107700,7 +109566,7 @@ entities:
pos: -133.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16123
components:
- type: Transform
@@ -107708,7 +109574,7 @@ entities:
pos: -133.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16124
components:
- type: Transform
@@ -107716,7 +109582,7 @@ entities:
pos: -133.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16125
components:
- type: Transform
@@ -107724,7 +109590,7 @@ entities:
pos: -133.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16126
components:
- type: Transform
@@ -107732,7 +109598,7 @@ entities:
pos: -133.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16127
components:
- type: Transform
@@ -107740,7 +109606,7 @@ entities:
pos: -133.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16128
components:
- type: Transform
@@ -107748,7 +109614,7 @@ entities:
pos: -133.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16129
components:
- type: Transform
@@ -107756,7 +109622,7 @@ entities:
pos: -133.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16130
components:
- type: Transform
@@ -107764,7 +109630,7 @@ entities:
pos: -134.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16131
components:
- type: Transform
@@ -107772,7 +109638,7 @@ entities:
pos: -134.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16132
components:
- type: Transform
@@ -107780,7 +109646,7 @@ entities:
pos: -134.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16133
components:
- type: Transform
@@ -107788,7 +109654,7 @@ entities:
pos: -134.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16134
components:
- type: Transform
@@ -107796,7 +109662,7 @@ entities:
pos: -134.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16135
components:
- type: Transform
@@ -107804,7 +109670,7 @@ entities:
pos: -134.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16136
components:
- type: Transform
@@ -107812,7 +109678,7 @@ entities:
pos: -134.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16137
components:
- type: Transform
@@ -107820,7 +109686,7 @@ entities:
pos: -134.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16138
components:
- type: Transform
@@ -107828,7 +109694,7 @@ entities:
pos: -134.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16139
components:
- type: Transform
@@ -107836,7 +109702,7 @@ entities:
pos: -134.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16140
components:
- type: Transform
@@ -107844,7 +109710,7 @@ entities:
pos: -134.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16141
components:
- type: Transform
@@ -107852,7 +109718,7 @@ entities:
pos: -134.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16142
components:
- type: Transform
@@ -107860,7 +109726,7 @@ entities:
pos: -134.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16143
components:
- type: Transform
@@ -107868,7 +109734,7 @@ entities:
pos: -133.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16144
components:
- type: Transform
@@ -107876,7 +109742,7 @@ entities:
pos: -133.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16145
components:
- type: Transform
@@ -107884,7 +109750,7 @@ entities:
pos: -133.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16146
components:
- type: Transform
@@ -107892,7 +109758,7 @@ entities:
pos: -133.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16147
components:
- type: Transform
@@ -107900,7 +109766,7 @@ entities:
pos: -133.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16148
components:
- type: Transform
@@ -107908,7 +109774,7 @@ entities:
pos: -133.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16149
components:
- type: Transform
@@ -107916,7 +109782,7 @@ entities:
pos: -133.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16150
components:
- type: Transform
@@ -107924,7 +109790,7 @@ entities:
pos: -133.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16151
components:
- type: Transform
@@ -107932,7 +109798,7 @@ entities:
pos: -133.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16152
components:
- type: Transform
@@ -107940,7 +109806,7 @@ entities:
pos: -133.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16153
components:
- type: Transform
@@ -107948,7 +109814,7 @@ entities:
pos: -133.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16154
components:
- type: Transform
@@ -107956,7 +109822,7 @@ entities:
pos: -133.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16155
components:
- type: Transform
@@ -107964,7 +109830,7 @@ entities:
pos: -133.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16156
components:
- type: Transform
@@ -107972,7 +109838,7 @@ entities:
pos: -134.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16157
components:
- type: Transform
@@ -107980,7 +109846,7 @@ entities:
pos: -134.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16158
components:
- type: Transform
@@ -107988,7 +109854,7 @@ entities:
pos: -134.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16159
components:
- type: Transform
@@ -107996,7 +109862,7 @@ entities:
pos: -134.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16160
components:
- type: Transform
@@ -108004,7 +109870,7 @@ entities:
pos: -134.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16161
components:
- type: Transform
@@ -108012,7 +109878,7 @@ entities:
pos: -134.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16162
components:
- type: Transform
@@ -108020,7 +109886,7 @@ entities:
pos: -134.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16163
components:
- type: Transform
@@ -108028,7 +109894,7 @@ entities:
pos: -134.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16164
components:
- type: Transform
@@ -108036,7 +109902,7 @@ entities:
pos: -134.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16165
components:
- type: Transform
@@ -108044,7 +109910,7 @@ entities:
pos: -134.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16166
components:
- type: Transform
@@ -108052,7 +109918,7 @@ entities:
pos: -133.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16167
components:
- type: Transform
@@ -108060,7 +109926,7 @@ entities:
pos: -133.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16168
components:
- type: Transform
@@ -108068,7 +109934,7 @@ entities:
pos: -133.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16169
components:
- type: Transform
@@ -108076,7 +109942,7 @@ entities:
pos: -133.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16170
components:
- type: Transform
@@ -108084,7 +109950,7 @@ entities:
pos: -133.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16171
components:
- type: Transform
@@ -108092,7 +109958,7 @@ entities:
pos: -133.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16172
components:
- type: Transform
@@ -108100,7 +109966,7 @@ entities:
pos: -133.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16173
components:
- type: Transform
@@ -108108,7 +109974,7 @@ entities:
pos: -133.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16174
components:
- type: Transform
@@ -108116,7 +109982,7 @@ entities:
pos: -133.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16175
components:
- type: Transform
@@ -108124,7 +109990,7 @@ entities:
pos: -133.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16176
components:
- type: Transform
@@ -108132,7 +109998,7 @@ entities:
pos: -133.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16177
components:
- type: Transform
@@ -108140,7 +110006,7 @@ entities:
pos: -134.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16178
components:
- type: Transform
@@ -108148,7 +110014,7 @@ entities:
pos: -134.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16179
components:
- type: Transform
@@ -108156,7 +110022,7 @@ entities:
pos: -134.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16180
components:
- type: Transform
@@ -108164,7 +110030,7 @@ entities:
pos: -134.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16181
components:
- type: Transform
@@ -108172,7 +110038,7 @@ entities:
pos: -134.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16182
components:
- type: Transform
@@ -108180,7 +110046,7 @@ entities:
pos: -134.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16183
components:
- type: Transform
@@ -108188,7 +110054,7 @@ entities:
pos: -134.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16184
components:
- type: Transform
@@ -108196,7 +110062,7 @@ entities:
pos: -134.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16185
components:
- type: Transform
@@ -108204,7 +110070,7 @@ entities:
pos: -134.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16186
components:
- type: Transform
@@ -108212,7 +110078,7 @@ entities:
pos: -133.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16187
components:
- type: Transform
@@ -108220,7 +110086,7 @@ entities:
pos: -133.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16188
components:
- type: Transform
@@ -108228,7 +110094,7 @@ entities:
pos: -133.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16189
components:
- type: Transform
@@ -108236,7 +110102,7 @@ entities:
pos: -133.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16190
components:
- type: Transform
@@ -108244,7 +110110,7 @@ entities:
pos: -133.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16191
components:
- type: Transform
@@ -108252,7 +110118,7 @@ entities:
pos: -133.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16192
components:
- type: Transform
@@ -108282,7 +110148,7 @@ entities:
pos: -119.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16197
components:
- type: Transform
@@ -108301,7 +110167,7 @@ entities:
pos: -126.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16200
components:
- type: Transform
@@ -108309,7 +110175,7 @@ entities:
pos: -123.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16201
components:
- type: Transform
@@ -108317,7 +110183,7 @@ entities:
pos: -121.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16202
components:
- type: Transform
@@ -108325,7 +110191,7 @@ entities:
pos: -122.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16203
components:
- type: Transform
@@ -108333,7 +110199,7 @@ entities:
pos: -120.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16204
components:
- type: Transform
@@ -108341,7 +110207,7 @@ entities:
pos: -121.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16205
components:
- type: Transform
@@ -108349,7 +110215,7 @@ entities:
pos: -123.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16206
components:
- type: Transform
@@ -108357,7 +110223,7 @@ entities:
pos: -124.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16207
components:
- type: Transform
@@ -108365,7 +110231,7 @@ entities:
pos: -125.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16208
components:
- type: Transform
@@ -108373,7 +110239,7 @@ entities:
pos: -122.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16209
components:
- type: Transform
@@ -108381,7 +110247,7 @@ entities:
pos: -95.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16210
components:
- type: Transform
@@ -108389,7 +110255,7 @@ entities:
pos: -96.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16211
components:
- type: Transform
@@ -108397,7 +110263,7 @@ entities:
pos: -86.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16212
components:
- type: Transform
@@ -108405,28 +110271,28 @@ entities:
pos: -88.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16213
components:
- type: Transform
pos: -88.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16214
components:
- type: Transform
pos: -91.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16215
components:
- type: Transform
pos: -88.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16216
components:
- type: Transform
@@ -108434,7 +110300,7 @@ entities:
pos: -115.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16217
components:
- type: Transform
@@ -108442,7 +110308,7 @@ entities:
pos: -115.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16218
components:
- type: Transform
@@ -108450,7 +110316,7 @@ entities:
pos: -115.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16219
components:
- type: Transform
@@ -108458,7 +110324,7 @@ entities:
pos: -113.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16220
components:
- type: Transform
@@ -108466,7 +110332,7 @@ entities:
pos: -112.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16221
components:
- type: Transform
@@ -108474,7 +110340,7 @@ entities:
pos: -110.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16222
components:
- type: Transform
@@ -108482,7 +110348,7 @@ entities:
pos: -111.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16223
components:
- type: Transform
@@ -108490,14 +110356,14 @@ entities:
pos: -97.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16224
components:
- type: Transform
pos: -114.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16225
components:
- type: Transform
@@ -108505,7 +110371,7 @@ entities:
pos: -112.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16226
components:
- type: Transform
@@ -108513,7 +110379,7 @@ entities:
pos: -114.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16227
components:
- type: Transform
@@ -108521,7 +110387,7 @@ entities:
pos: -100.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16228
components:
- type: Transform
@@ -108529,7 +110395,7 @@ entities:
pos: -114.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16229
components:
- type: Transform
@@ -108537,7 +110403,7 @@ entities:
pos: -114.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16230
components:
- type: Transform
@@ -108545,7 +110411,7 @@ entities:
pos: -113.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16231
components:
- type: Transform
@@ -108553,7 +110419,7 @@ entities:
pos: -114.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16232
components:
- type: Transform
@@ -108561,7 +110427,7 @@ entities:
pos: -114.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16233
components:
- type: Transform
@@ -108569,7 +110435,7 @@ entities:
pos: -112.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16234
components:
- type: Transform
@@ -108577,7 +110443,7 @@ entities:
pos: -118.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16235
components:
- type: Transform
@@ -108585,7 +110451,7 @@ entities:
pos: -116.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16236
components:
- type: Transform
@@ -108593,14 +110459,14 @@ entities:
pos: -109.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16237
components:
- type: Transform
pos: -24.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16238
components:
- type: Transform
@@ -108608,21 +110474,21 @@ entities:
pos: -126.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16239
components:
- type: Transform
pos: -119.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16240
components:
- type: Transform
pos: -103.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16241
components:
- type: Transform
@@ -108630,7 +110496,7 @@ entities:
pos: -98.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16242
components:
- type: Transform
@@ -108638,56 +110504,56 @@ entities:
pos: -87.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16243
components:
- type: Transform
pos: -114.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16244
components:
- type: Transform
pos: -114.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16245
components:
- type: Transform
pos: -114.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16246
components:
- type: Transform
pos: -114.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16247
components:
- type: Transform
pos: -114.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16248
components:
- type: Transform
pos: -114.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16249
components:
- type: Transform
pos: -114.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16250
components:
- type: Transform
@@ -108695,7 +110561,7 @@ entities:
pos: -113.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16251
components:
- type: Transform
@@ -108703,7 +110569,7 @@ entities:
pos: -111.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16252
components:
- type: Transform
@@ -108711,7 +110577,7 @@ entities:
pos: -110.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16253
components:
- type: Transform
@@ -108719,7 +110585,7 @@ entities:
pos: -109.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16254
components:
- type: Transform
@@ -108727,7 +110593,7 @@ entities:
pos: -112.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16255
components:
- type: Transform
@@ -108735,7 +110601,7 @@ entities:
pos: -120.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16256
components:
- type: Transform
@@ -108743,7 +110609,7 @@ entities:
pos: -126.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16257
components:
- type: Transform
@@ -108759,14 +110625,14 @@ entities:
pos: -126.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16259
components:
- type: Transform
pos: -67.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16260
components:
- type: Transform
@@ -108774,49 +110640,49 @@ entities:
pos: -28.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16261
components:
- type: Transform
pos: -104.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16262
components:
- type: Transform
pos: -23.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16263
components:
- type: Transform
pos: -24.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16264
components:
- type: Transform
pos: -33.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16265
components:
- type: Transform
pos: -24.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16266
components:
- type: Transform
pos: -29.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16267
components:
- type: Transform
@@ -108824,7 +110690,7 @@ entities:
pos: -20.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16268
components:
- type: Transform
@@ -108832,14 +110698,14 @@ entities:
pos: -33.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16269
components:
- type: Transform
pos: -58.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16270
components:
- type: Transform
@@ -108847,7 +110713,7 @@ entities:
pos: -47.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16271
components:
- type: Transform
@@ -108855,7 +110721,7 @@ entities:
pos: -45.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16272
components:
- type: Transform
@@ -108863,7 +110729,7 @@ entities:
pos: -47.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16273
components:
- type: Transform
@@ -108871,7 +110737,7 @@ entities:
pos: -77.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16274
components:
- type: Transform
@@ -108879,7 +110745,7 @@ entities:
pos: -84.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16275
components:
- type: Transform
@@ -108887,7 +110753,7 @@ entities:
pos: -83.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16276
components:
- type: Transform
@@ -108902,7 +110768,7 @@ entities:
pos: -124.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16278
components:
- type: Transform
@@ -108910,7 +110776,7 @@ entities:
pos: -133.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16279
components:
- type: Transform
@@ -108918,7 +110784,7 @@ entities:
pos: -137.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16280
components:
- type: Transform
@@ -108926,7 +110792,7 @@ entities:
pos: -134.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16281
components:
- type: Transform
@@ -108942,7 +110808,7 @@ entities:
pos: -137.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16283
components:
- type: Transform
@@ -108950,7 +110816,7 @@ entities:
pos: -138.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16284
components:
- type: Transform
@@ -108958,7 +110824,7 @@ entities:
pos: -134.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16285
components:
- type: Transform
@@ -108966,7 +110832,7 @@ entities:
pos: -133.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16286
components:
- type: Transform
@@ -108974,7 +110840,7 @@ entities:
pos: -77.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16287
components:
- type: Transform
@@ -108982,28 +110848,28 @@ entities:
pos: -19.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16288
components:
- type: Transform
pos: -104.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16289
components:
- type: Transform
pos: -23.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16290
components:
- type: Transform
pos: -51.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16291
components:
- type: Transform
@@ -109011,14 +110877,14 @@ entities:
pos: -116.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16292
components:
- type: Transform
pos: -103.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16293
components:
- type: Transform
@@ -109033,7 +110899,7 @@ entities:
pos: -23.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16295
components:
- type: Transform
@@ -109041,7 +110907,7 @@ entities:
pos: -71.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16296
components:
- type: Transform
@@ -109049,7 +110915,7 @@ entities:
pos: -77.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16297
components:
- type: Transform
@@ -109057,7 +110923,7 @@ entities:
pos: -136.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16298
components:
- type: Transform
@@ -109065,7 +110931,7 @@ entities:
pos: -135.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16299
components:
- type: Transform
@@ -109073,7 +110939,7 @@ entities:
pos: -140.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16300
components:
- type: Transform
@@ -109081,14 +110947,14 @@ entities:
pos: -142.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16301
components:
- type: Transform
pos: -29.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16302
components:
- type: Transform
@@ -109096,7 +110962,7 @@ entities:
pos: -144.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16303
components:
- type: Transform
@@ -109104,7 +110970,7 @@ entities:
pos: -145.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16304
components:
- type: Transform
@@ -109112,7 +110978,7 @@ entities:
pos: -146.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16305
components:
- type: Transform
@@ -109120,7 +110986,7 @@ entities:
pos: -148.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16306
components:
- type: Transform
@@ -109128,7 +110994,7 @@ entities:
pos: -150.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16307
components:
- type: Transform
@@ -109136,7 +111002,7 @@ entities:
pos: -152.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16308
components:
- type: Transform
@@ -109144,7 +111010,7 @@ entities:
pos: -153.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16309
components:
- type: Transform
@@ -109152,7 +111018,7 @@ entities:
pos: -147.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16310
components:
- type: Transform
@@ -109160,7 +111026,7 @@ entities:
pos: -53.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16311
components:
- type: Transform
@@ -109168,7 +111034,7 @@ entities:
pos: -44.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16312
components:
- type: Transform
@@ -109176,7 +111042,7 @@ entities:
pos: -79.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16313
components:
- type: Transform
@@ -109184,7 +111050,7 @@ entities:
pos: -83.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16314
components:
- type: Transform
@@ -109192,7 +111058,7 @@ entities:
pos: -93.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16315
components:
- type: Transform
@@ -109200,7 +111066,7 @@ entities:
pos: -78.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16316
components:
- type: Transform
@@ -109208,14 +111074,14 @@ entities:
pos: -81.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16317
components:
- type: Transform
pos: -83.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16318
components:
- type: Transform
@@ -109223,14 +111089,14 @@ entities:
pos: -87.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16319
components:
- type: Transform
pos: -87.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16320
components:
- type: Transform
@@ -109238,7 +111104,7 @@ entities:
pos: -75.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16321
components:
- type: Transform
@@ -109246,7 +111112,7 @@ entities:
pos: -118.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16322
components:
- type: Transform
@@ -109254,7 +111120,7 @@ entities:
pos: -73.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16323
components:
- type: Transform
@@ -109262,7 +111128,7 @@ entities:
pos: -122.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16324
components:
- type: Transform
@@ -109277,7 +111143,7 @@ entities:
pos: -107.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16326
components:
- type: Transform
@@ -109285,7 +111151,7 @@ entities:
pos: -117.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16327
components:
- type: Transform
@@ -109293,14 +111159,14 @@ entities:
pos: -100.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16328
components:
- type: Transform
pos: -94.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16329
components:
- type: Transform
@@ -109308,7 +111174,7 @@ entities:
pos: -28.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16330
components:
- type: Transform
@@ -109316,7 +111182,7 @@ entities:
pos: -97.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16331
components:
- type: Transform
@@ -109324,7 +111190,7 @@ entities:
pos: -78.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16332
components:
- type: Transform
@@ -109332,7 +111198,7 @@ entities:
pos: -17.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16333
components:
- type: Transform
@@ -109340,7 +111206,7 @@ entities:
pos: -117.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16334
components:
- type: Transform
@@ -109348,14 +111214,14 @@ entities:
pos: -115.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16335
components:
- type: Transform
pos: -104.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16336
components:
- type: Transform
@@ -109363,7 +111229,7 @@ entities:
pos: -97.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16337
components:
- type: Transform
@@ -109371,14 +111237,14 @@ entities:
pos: -81.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16338
components:
- type: Transform
pos: -30.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16339
components:
- type: Transform
@@ -109386,7 +111252,7 @@ entities:
pos: -109.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16340
components:
- type: Transform
@@ -109394,7 +111260,7 @@ entities:
pos: -93.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16341
components:
- type: Transform
@@ -109402,7 +111268,7 @@ entities:
pos: -93.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16342
components:
- type: Transform
@@ -109410,7 +111276,7 @@ entities:
pos: -93.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16343
components:
- type: Transform
@@ -109418,7 +111284,7 @@ entities:
pos: -93.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16344
components:
- type: Transform
@@ -109426,7 +111292,7 @@ entities:
pos: -94.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16345
components:
- type: Transform
@@ -109434,7 +111300,7 @@ entities:
pos: -95.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16346
components:
- type: Transform
@@ -109442,7 +111308,7 @@ entities:
pos: -97.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16347
components:
- type: Transform
@@ -109450,7 +111316,7 @@ entities:
pos: -98.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16348
components:
- type: Transform
@@ -109458,14 +111324,14 @@ entities:
pos: -96.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16349
components:
- type: Transform
pos: -94.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16350
components:
- type: Transform
@@ -109473,7 +111339,7 @@ entities:
pos: -95.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16351
components:
- type: Transform
@@ -109481,7 +111347,7 @@ entities:
pos: -96.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16352
components:
- type: Transform
@@ -109489,7 +111355,7 @@ entities:
pos: -98.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16353
components:
- type: Transform
@@ -109497,7 +111363,7 @@ entities:
pos: -99.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16354
components:
- type: Transform
@@ -109505,7 +111371,7 @@ entities:
pos: -100.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16355
components:
- type: Transform
@@ -109513,7 +111379,7 @@ entities:
pos: -97.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16356
components:
- type: Transform
@@ -109521,14 +111387,14 @@ entities:
pos: -108.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16357
components:
- type: Transform
pos: -29.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16358
components:
- type: Transform
@@ -109536,7 +111402,7 @@ entities:
pos: -106.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16359
components:
- type: Transform
@@ -109544,7 +111410,7 @@ entities:
pos: -104.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16360
components:
- type: Transform
@@ -109552,7 +111418,7 @@ entities:
pos: -94.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16361
components:
- type: Transform
@@ -109560,7 +111426,7 @@ entities:
pos: -94.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16362
components:
- type: Transform
@@ -109568,7 +111434,7 @@ entities:
pos: -94.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16363
components:
- type: Transform
@@ -109576,7 +111442,7 @@ entities:
pos: -94.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16364
components:
- type: Transform
@@ -109584,7 +111450,7 @@ entities:
pos: -94.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16365
components:
- type: Transform
@@ -109592,7 +111458,7 @@ entities:
pos: -94.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16366
components:
- type: Transform
@@ -109600,7 +111466,7 @@ entities:
pos: -93.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16367
components:
- type: Transform
@@ -109608,7 +111474,7 @@ entities:
pos: -93.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16368
components:
- type: Transform
@@ -109616,7 +111482,7 @@ entities:
pos: -93.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16369
components:
- type: Transform
@@ -109624,7 +111490,7 @@ entities:
pos: -93.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16370
components:
- type: Transform
@@ -109632,7 +111498,7 @@ entities:
pos: -93.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16371
components:
- type: Transform
@@ -109640,7 +111506,7 @@ entities:
pos: -93.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16372
components:
- type: Transform
@@ -109648,7 +111514,7 @@ entities:
pos: -93.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16373
components:
- type: Transform
@@ -109656,7 +111522,7 @@ entities:
pos: -93.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16374
components:
- type: Transform
@@ -109664,7 +111530,7 @@ entities:
pos: -94.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16375
components:
- type: Transform
@@ -109672,7 +111538,7 @@ entities:
pos: -88.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16376
components:
- type: Transform
@@ -109680,7 +111546,7 @@ entities:
pos: -88.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16377
components:
- type: Transform
@@ -109688,7 +111554,7 @@ entities:
pos: -88.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16378
components:
- type: Transform
@@ -109696,7 +111562,7 @@ entities:
pos: -88.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16379
components:
- type: Transform
@@ -109704,7 +111570,7 @@ entities:
pos: -88.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16380
components:
- type: Transform
@@ -109712,7 +111578,7 @@ entities:
pos: -89.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16381
components:
- type: Transform
@@ -109720,7 +111586,7 @@ entities:
pos: -89.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16382
components:
- type: Transform
@@ -109728,7 +111594,7 @@ entities:
pos: -30.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16383
components:
- type: Transform
@@ -109736,7 +111602,7 @@ entities:
pos: -88.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16384
components:
- type: Transform
@@ -109744,7 +111610,7 @@ entities:
pos: -87.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16385
components:
- type: Transform
@@ -109752,14 +111618,14 @@ entities:
pos: -86.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16386
components:
- type: Transform
pos: -39.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16387
components:
- type: Transform
@@ -109767,7 +111633,7 @@ entities:
pos: -31.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16388
components:
- type: Transform
@@ -109775,7 +111641,7 @@ entities:
pos: -85.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16389
components:
- type: Transform
@@ -109783,7 +111649,7 @@ entities:
pos: -89.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16390
components:
- type: Transform
@@ -109791,7 +111657,7 @@ entities:
pos: -90.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16391
components:
- type: Transform
@@ -109799,7 +111665,7 @@ entities:
pos: -92.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16392
components:
- type: Transform
@@ -109807,7 +111673,7 @@ entities:
pos: -91.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16393
components:
- type: Transform
@@ -109815,7 +111681,7 @@ entities:
pos: -90.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16394
components:
- type: Transform
@@ -109828,7 +111694,7 @@ entities:
pos: -93.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16396
components:
- type: Transform
@@ -109836,7 +111702,7 @@ entities:
pos: -92.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16397
components:
- type: Transform
@@ -109844,7 +111710,7 @@ entities:
pos: -92.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16398
components:
- type: Transform
@@ -109852,7 +111718,7 @@ entities:
pos: -91.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16399
components:
- type: Transform
@@ -109865,7 +111731,7 @@ entities:
pos: -88.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16401
components:
- type: Transform
@@ -109873,7 +111739,7 @@ entities:
pos: -87.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16402
components:
- type: Transform
@@ -109881,7 +111747,7 @@ entities:
pos: -90.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16403
components:
- type: Transform
@@ -109889,7 +111755,7 @@ entities:
pos: -87.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16404
components:
- type: Transform
@@ -109897,7 +111763,7 @@ entities:
pos: -87.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16405
components:
- type: Transform
@@ -109910,7 +111776,7 @@ entities:
pos: -88.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16407
components:
- type: Transform
@@ -109918,7 +111784,7 @@ entities:
pos: -90.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16408
components:
- type: Transform
@@ -109926,7 +111792,7 @@ entities:
pos: -92.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16409
components:
- type: Transform
@@ -109934,7 +111800,7 @@ entities:
pos: -93.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16410
components:
- type: Transform
@@ -109942,7 +111808,7 @@ entities:
pos: -89.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16411
components:
- type: Transform
@@ -109950,7 +111816,7 @@ entities:
pos: -86.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16412
components:
- type: Transform
@@ -109958,7 +111824,7 @@ entities:
pos: -86.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16413
components:
- type: Transform
@@ -109966,7 +111832,7 @@ entities:
pos: -86.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16414
components:
- type: Transform
@@ -109974,7 +111840,7 @@ entities:
pos: -87.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16415
components:
- type: Transform
@@ -109982,7 +111848,7 @@ entities:
pos: -87.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16416
components:
- type: Transform
@@ -109990,7 +111856,7 @@ entities:
pos: -87.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16417
components:
- type: Transform
@@ -109998,7 +111864,7 @@ entities:
pos: -87.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16418
components:
- type: Transform
@@ -110006,7 +111872,7 @@ entities:
pos: -87.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16419
components:
- type: Transform
@@ -110014,7 +111880,7 @@ entities:
pos: -86.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16420
components:
- type: Transform
@@ -110022,7 +111888,7 @@ entities:
pos: -86.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16421
components:
- type: Transform
@@ -110030,7 +111896,7 @@ entities:
pos: -86.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16422
components:
- type: Transform
@@ -110038,14 +111904,14 @@ entities:
pos: -86.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16423
components:
- type: Transform
pos: -87.5,34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16424
components:
- type: Transform
@@ -110053,7 +111919,7 @@ entities:
pos: -85.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16425
components:
- type: Transform
@@ -110066,7 +111932,7 @@ entities:
pos: -72.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16427
components:
- type: Transform
@@ -110079,14 +111945,14 @@ entities:
pos: -67.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16429
components:
- type: Transform
pos: -94.5,34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16430
components:
- type: Transform
@@ -110094,7 +111960,7 @@ entities:
pos: -94.5,36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16431
components:
- type: Transform
@@ -110102,7 +111968,7 @@ entities:
pos: -94.5,37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16432
components:
- type: Transform
@@ -110110,7 +111976,7 @@ entities:
pos: -31.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16433
components:
- type: Transform
@@ -110118,7 +111984,7 @@ entities:
pos: -70.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16434
components:
- type: Transform
@@ -110126,7 +111992,7 @@ entities:
pos: -34.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16435
components:
- type: Transform
@@ -110134,7 +112000,7 @@ entities:
pos: -82.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16436
components:
- type: Transform
@@ -110174,7 +112040,7 @@ entities:
pos: -110.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16441
components:
- type: Transform
@@ -110246,7 +112112,7 @@ entities:
pos: -111.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16450
components:
- type: Transform
@@ -110254,7 +112120,7 @@ entities:
pos: -112.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16451
components:
- type: Transform
@@ -110262,7 +112128,7 @@ entities:
pos: -113.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16452
components:
- type: Transform
@@ -110270,7 +112136,7 @@ entities:
pos: -117.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16453
components:
- type: Transform
@@ -110278,7 +112144,7 @@ entities:
pos: -118.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16454
components:
- type: Transform
@@ -110286,7 +112152,7 @@ entities:
pos: -119.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16455
components:
- type: Transform
@@ -110294,7 +112160,7 @@ entities:
pos: -120.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16456
components:
- type: Transform
@@ -110302,35 +112168,35 @@ entities:
pos: -116.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16457
components:
- type: Transform
pos: -115.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16458
components:
- type: Transform
pos: -115.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16459
components:
- type: Transform
pos: -115.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16460
components:
- type: Transform
pos: -115.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16461
components:
- type: Transform
@@ -110338,7 +112204,7 @@ entities:
pos: -121.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16462
components:
- type: Transform
@@ -110346,7 +112212,7 @@ entities:
pos: -116.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16463
components:
- type: Transform
@@ -110354,7 +112220,7 @@ entities:
pos: -117.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16464
components:
- type: Transform
@@ -110362,7 +112228,7 @@ entities:
pos: -118.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16465
components:
- type: Transform
@@ -110376,70 +112242,70 @@ entities:
pos: -120.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16467
components:
- type: Transform
pos: -120.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16468
components:
- type: Transform
pos: -119.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16469
components:
- type: Transform
pos: -119.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16470
components:
- type: Transform
pos: -119.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16471
components:
- type: Transform
pos: -119.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16472
components:
- type: Transform
pos: -119.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16473
components:
- type: Transform
pos: -119.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16474
components:
- type: Transform
pos: -119.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16475
components:
- type: Transform
pos: -119.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16476
components:
- type: Transform
@@ -110535,7 +112401,7 @@ entities:
pos: -115.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16488
components:
- type: Transform
@@ -110642,35 +112508,35 @@ entities:
pos: -115.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16502
components:
- type: Transform
pos: -115.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16503
components:
- type: Transform
pos: -115.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16504
components:
- type: Transform
pos: -115.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16505
components:
- type: Transform
pos: -115.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16506
components:
- type: Transform
@@ -110678,7 +112544,7 @@ entities:
pos: -118.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16507
components:
- type: Transform
@@ -110686,7 +112552,7 @@ entities:
pos: -116.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16508
components:
- type: Transform
@@ -110694,7 +112560,7 @@ entities:
pos: -117.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16509
components:
- type: Transform
@@ -110702,7 +112568,7 @@ entities:
pos: -119.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16510
components:
- type: Transform
@@ -110710,7 +112576,7 @@ entities:
pos: -122.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16511
components:
- type: Transform
@@ -110718,7 +112584,7 @@ entities:
pos: -123.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16512
components:
- type: Transform
@@ -110734,7 +112600,7 @@ entities:
pos: -122.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16514
components:
- type: Transform
@@ -110742,14 +112608,14 @@ entities:
pos: -121.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16515
components:
- type: Transform
pos: -104.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16516
components:
- type: Transform
@@ -110757,7 +112623,7 @@ entities:
pos: -124.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16517
components:
- type: Transform
@@ -110765,7 +112631,7 @@ entities:
pos: -122.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16518
components:
- type: Transform
@@ -110773,7 +112639,7 @@ entities:
pos: -121.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16519
components:
- type: Transform
@@ -110781,7 +112647,7 @@ entities:
pos: -123.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16520
components:
- type: Transform
@@ -110789,7 +112655,7 @@ entities:
pos: -134.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16521
components:
- type: Transform
@@ -110804,7 +112670,7 @@ entities:
pos: -98.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16523
components:
- type: Transform
@@ -110852,14 +112718,14 @@ entities:
pos: -107.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16529
components:
- type: Transform
pos: -29.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16530
components:
- type: Transform
@@ -110907,7 +112773,7 @@ entities:
pos: -124.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16536
components:
- type: Transform
@@ -110915,7 +112781,7 @@ entities:
pos: -127.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16537
components:
- type: Transform
@@ -110923,7 +112789,7 @@ entities:
pos: -128.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16538
components:
- type: Transform
@@ -110931,7 +112797,7 @@ entities:
pos: -130.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16539
components:
- type: Transform
@@ -110939,7 +112805,7 @@ entities:
pos: -131.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16540
components:
- type: Transform
@@ -110947,7 +112813,7 @@ entities:
pos: -132.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16541
components:
- type: Transform
@@ -110955,7 +112821,7 @@ entities:
pos: -133.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16542
components:
- type: Transform
@@ -110963,7 +112829,7 @@ entities:
pos: -125.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16543
components:
- type: Transform
@@ -110971,7 +112837,7 @@ entities:
pos: -123.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16544
components:
- type: Transform
@@ -110979,7 +112845,7 @@ entities:
pos: -122.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16545
components:
- type: Transform
@@ -110987,7 +112853,7 @@ entities:
pos: -124.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16546
components:
- type: Transform
@@ -111034,7 +112900,7 @@ entities:
pos: -30.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16552
components:
- type: Transform
@@ -111042,7 +112908,7 @@ entities:
pos: -127.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16553
components:
- type: Transform
@@ -111050,7 +112916,7 @@ entities:
pos: -128.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16554
components:
- type: Transform
@@ -111058,7 +112924,7 @@ entities:
pos: -130.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16555
components:
- type: Transform
@@ -111066,7 +112932,7 @@ entities:
pos: -131.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16556
components:
- type: Transform
@@ -111074,7 +112940,7 @@ entities:
pos: -132.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16557
components:
- type: Transform
@@ -111082,7 +112948,7 @@ entities:
pos: -133.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16558
components:
- type: Transform
@@ -111090,7 +112956,7 @@ entities:
pos: -134.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16559
components:
- type: Transform
@@ -111098,49 +112964,49 @@ entities:
pos: -129.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16560
components:
- type: Transform
pos: -135.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16561
components:
- type: Transform
pos: -135.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16562
components:
- type: Transform
pos: -135.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16563
components:
- type: Transform
pos: -135.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16564
components:
- type: Transform
pos: -135.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16565
components:
- type: Transform
pos: -135.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16566
components:
- type: Transform
@@ -111208,7 +113074,7 @@ entities:
pos: -114.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16575
components:
- type: Transform
@@ -111216,7 +113082,7 @@ entities:
pos: -111.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16576
components:
- type: Transform
@@ -111224,7 +113090,7 @@ entities:
pos: -110.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16577
components:
- type: Transform
@@ -111232,14 +113098,14 @@ entities:
pos: -105.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16578
components:
- type: Transform
pos: -29.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16579
components:
- type: Transform
@@ -111247,14 +113113,14 @@ entities:
pos: -101.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16580
components:
- type: Transform
pos: -104.5,34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16581
components:
- type: Transform
@@ -111262,7 +113128,7 @@ entities:
pos: -119.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16582
components:
- type: Transform
@@ -111270,28 +113136,28 @@ entities:
pos: -119.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16583
components:
- type: Transform
pos: -29.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16584
components:
- type: Transform
pos: -30.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16585
components:
- type: Transform
pos: -29.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16586
components:
- type: Transform
@@ -111305,14 +113171,14 @@ entities:
pos: -29.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16588
components:
- type: Transform
pos: -29.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16589
components:
- type: Transform
@@ -111320,21 +113186,21 @@ entities:
pos: -112.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16590
components:
- type: Transform
pos: -75.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16591
components:
- type: Transform
pos: -75.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16592
components:
- type: Transform
@@ -111342,7 +113208,7 @@ entities:
pos: -75.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16593
components:
- type: Transform
@@ -111350,7 +113216,7 @@ entities:
pos: -74.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16594
components:
- type: Transform
@@ -111358,7 +113224,7 @@ entities:
pos: -72.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16595
components:
- type: Transform
@@ -111366,7 +113232,7 @@ entities:
pos: -73.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16596
components:
- type: Transform
@@ -111374,7 +113240,7 @@ entities:
pos: -72.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16597
components:
- type: Transform
@@ -111382,7 +113248,7 @@ entities:
pos: -73.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16598
components:
- type: Transform
@@ -111390,7 +113256,7 @@ entities:
pos: -74.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16599
components:
- type: Transform
@@ -111398,7 +113264,7 @@ entities:
pos: -76.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16600
components:
- type: Transform
@@ -111406,7 +113272,7 @@ entities:
pos: -76.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16601
components:
- type: Transform
@@ -111414,7 +113280,7 @@ entities:
pos: -76.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16602
components:
- type: Transform
@@ -111422,7 +113288,7 @@ entities:
pos: -76.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16603
components:
- type: Transform
@@ -111430,7 +113296,7 @@ entities:
pos: -76.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16604
components:
- type: Transform
@@ -111438,7 +113304,7 @@ entities:
pos: -76.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16605
components:
- type: Transform
@@ -111446,7 +113312,7 @@ entities:
pos: -76.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16606
components:
- type: Transform
@@ -111454,7 +113320,7 @@ entities:
pos: -76.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16607
components:
- type: Transform
@@ -111462,7 +113328,7 @@ entities:
pos: -75.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16608
components:
- type: Transform
@@ -111470,84 +113336,84 @@ entities:
pos: -76.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16609
components:
- type: Transform
pos: -76.5,-67.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16610
components:
- type: Transform
pos: -76.5,-68.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16611
components:
- type: Transform
pos: -76.5,-70.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16612
components:
- type: Transform
pos: -76.5,-71.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16613
components:
- type: Transform
pos: -76.5,-72.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16614
components:
- type: Transform
pos: -76.5,-73.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16615
components:
- type: Transform
pos: -76.5,-74.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16616
components:
- type: Transform
pos: -76.5,-69.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16617
components:
- type: Transform
pos: -82.5,-77.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16618
components:
- type: Transform
pos: -82.5,-78.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16619
components:
- type: Transform
pos: -82.5,-79.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16620
components:
- type: Transform
@@ -111555,7 +113421,7 @@ entities:
pos: -81.5,-76.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16621
components:
- type: Transform
@@ -111563,7 +113429,7 @@ entities:
pos: -80.5,-76.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16622
components:
- type: Transform
@@ -111571,7 +113437,7 @@ entities:
pos: -79.5,-76.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16623
components:
- type: Transform
@@ -111579,56 +113445,56 @@ entities:
pos: -77.5,-75.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16624
components:
- type: Transform
pos: -75.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16625
components:
- type: Transform
pos: -75.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16626
components:
- type: Transform
pos: -75.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16627
components:
- type: Transform
pos: -75.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16628
components:
- type: Transform
pos: -75.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16629
components:
- type: Transform
pos: -75.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16630
components:
- type: Transform
pos: -75.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16631
components:
- type: Transform
@@ -111636,7 +113502,7 @@ entities:
pos: -66.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16632
components:
- type: Transform
@@ -111644,7 +113510,7 @@ entities:
pos: -73.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16633
components:
- type: Transform
@@ -111652,7 +113518,7 @@ entities:
pos: -64.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16634
components:
- type: Transform
@@ -111660,7 +113526,7 @@ entities:
pos: -74.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16635
components:
- type: Transform
@@ -111668,7 +113534,7 @@ entities:
pos: -71.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16636
components:
- type: Transform
@@ -111676,7 +113542,7 @@ entities:
pos: -70.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16637
components:
- type: Transform
@@ -111684,7 +113550,7 @@ entities:
pos: -69.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16638
components:
- type: Transform
@@ -111692,7 +113558,7 @@ entities:
pos: -68.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16639
components:
- type: Transform
@@ -111700,7 +113566,7 @@ entities:
pos: -67.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16640
components:
- type: Transform
@@ -111708,7 +113574,7 @@ entities:
pos: -64.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16641
components:
- type: Transform
@@ -111716,7 +113582,7 @@ entities:
pos: -63.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16642
components:
- type: Transform
@@ -111724,7 +113590,7 @@ entities:
pos: -62.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16643
components:
- type: Transform
@@ -111732,7 +113598,7 @@ entities:
pos: -61.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16644
components:
- type: Transform
@@ -111740,7 +113606,7 @@ entities:
pos: -60.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16645
components:
- type: Transform
@@ -111748,7 +113614,7 @@ entities:
pos: -65.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16646
components:
- type: Transform
@@ -111756,7 +113622,7 @@ entities:
pos: -66.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16647
components:
- type: Transform
@@ -111764,7 +113630,7 @@ entities:
pos: -74.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16648
components:
- type: Transform
@@ -111772,7 +113638,7 @@ entities:
pos: -72.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16649
components:
- type: Transform
@@ -111780,7 +113646,7 @@ entities:
pos: -70.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16650
components:
- type: Transform
@@ -111788,7 +113654,7 @@ entities:
pos: -69.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16651
components:
- type: Transform
@@ -111796,7 +113662,7 @@ entities:
pos: -68.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16652
components:
- type: Transform
@@ -111804,7 +113670,7 @@ entities:
pos: -67.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16653
components:
- type: Transform
@@ -111812,7 +113678,7 @@ entities:
pos: -73.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16654
components:
- type: Transform
@@ -111820,7 +113686,7 @@ entities:
pos: -61.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16655
components:
- type: Transform
@@ -111828,7 +113694,7 @@ entities:
pos: -63.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16656
components:
- type: Transform
@@ -111836,7 +113702,7 @@ entities:
pos: -62.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16657
components:
- type: Transform
@@ -111844,7 +113710,7 @@ entities:
pos: -60.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16658
components:
- type: Transform
@@ -111852,7 +113718,7 @@ entities:
pos: -59.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16659
components:
- type: Transform
@@ -111860,7 +113726,7 @@ entities:
pos: -58.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16660
components:
- type: Transform
@@ -111868,7 +113734,7 @@ entities:
pos: -57.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16661
components:
- type: Transform
@@ -111876,7 +113742,7 @@ entities:
pos: -56.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16662
components:
- type: Transform
@@ -111884,7 +113750,7 @@ entities:
pos: -58.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16663
components:
- type: Transform
@@ -111892,7 +113758,7 @@ entities:
pos: -59.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16664
components:
- type: Transform
@@ -111900,7 +113766,7 @@ entities:
pos: -56.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16665
components:
- type: Transform
@@ -111908,7 +113774,7 @@ entities:
pos: -75.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16666
components:
- type: Transform
@@ -111916,14 +113782,14 @@ entities:
pos: -57.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16667
components:
- type: Transform
pos: -55.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16668
components:
- type: Transform
@@ -111931,7 +113797,7 @@ entities:
pos: -55.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16669
components:
- type: Transform
@@ -111939,7 +113805,7 @@ entities:
pos: -54.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16670
components:
- type: Transform
@@ -111947,7 +113813,7 @@ entities:
pos: -54.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16671
components:
- type: Transform
@@ -111955,7 +113821,7 @@ entities:
pos: -53.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16672
components:
- type: Transform
@@ -111963,7 +113829,7 @@ entities:
pos: -52.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16673
components:
- type: Transform
@@ -111971,7 +113837,7 @@ entities:
pos: -50.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16674
components:
- type: Transform
@@ -111979,7 +113845,7 @@ entities:
pos: -49.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16675
components:
- type: Transform
@@ -111987,7 +113853,7 @@ entities:
pos: -48.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16676
components:
- type: Transform
@@ -111995,14 +113861,14 @@ entities:
pos: -47.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16677
components:
- type: Transform
pos: -54.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16678
components:
- type: Transform
@@ -112010,7 +113876,7 @@ entities:
pos: -53.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16679
components:
- type: Transform
@@ -112018,7 +113884,7 @@ entities:
pos: -52.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16680
components:
- type: Transform
@@ -112026,7 +113892,7 @@ entities:
pos: -51.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16681
components:
- type: Transform
@@ -112034,7 +113900,7 @@ entities:
pos: -50.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16682
components:
- type: Transform
@@ -112042,7 +113908,7 @@ entities:
pos: -48.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16683
components:
- type: Transform
@@ -112050,7 +113916,7 @@ entities:
pos: -47.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16684
components:
- type: Transform
@@ -112058,7 +113924,7 @@ entities:
pos: -46.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16685
components:
- type: Transform
@@ -112066,7 +113932,7 @@ entities:
pos: -44.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16686
components:
- type: Transform
@@ -112074,7 +113940,7 @@ entities:
pos: -43.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16687
components:
- type: Transform
@@ -112082,7 +113948,7 @@ entities:
pos: -42.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16688
components:
- type: Transform
@@ -112090,7 +113956,7 @@ entities:
pos: -45.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16689
components:
- type: Transform
@@ -112098,7 +113964,7 @@ entities:
pos: -46.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16690
components:
- type: Transform
@@ -112106,7 +113972,7 @@ entities:
pos: -45.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16691
components:
- type: Transform
@@ -112114,7 +113980,7 @@ entities:
pos: -43.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16692
components:
- type: Transform
@@ -112122,7 +113988,7 @@ entities:
pos: -44.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16693
components:
- type: Transform
@@ -112130,7 +113996,7 @@ entities:
pos: -42.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16694
components:
- type: Transform
@@ -112138,7 +114004,7 @@ entities:
pos: -42.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16695
components:
- type: Transform
@@ -112146,7 +114012,7 @@ entities:
pos: -41.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16696
components:
- type: Transform
@@ -112154,7 +114020,7 @@ entities:
pos: -41.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16697
components:
- type: Transform
@@ -112162,7 +114028,7 @@ entities:
pos: -41.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16698
components:
- type: Transform
@@ -112170,14 +114036,14 @@ entities:
pos: -46.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16699
components:
- type: Transform
pos: -30.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16700
components:
- type: Transform
@@ -112185,7 +114051,7 @@ entities:
pos: -45.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16701
components:
- type: Transform
@@ -112193,7 +114059,7 @@ entities:
pos: -21.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16702
components:
- type: Transform
@@ -112201,7 +114067,7 @@ entities:
pos: -117.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16703
components:
- type: Transform
@@ -112209,7 +114075,7 @@ entities:
pos: -44.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16704
components:
- type: Transform
@@ -112217,7 +114083,7 @@ entities:
pos: -64.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16705
components:
- type: Transform
@@ -112225,7 +114091,7 @@ entities:
pos: -15.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16706
components:
- type: Transform
@@ -112233,7 +114099,7 @@ entities:
pos: -15.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16707
components:
- type: Transform
@@ -112241,7 +114107,7 @@ entities:
pos: -15.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16708
components:
- type: Transform
@@ -112249,7 +114115,7 @@ entities:
pos: -14.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16709
components:
- type: Transform
@@ -112257,7 +114123,7 @@ entities:
pos: -13.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16710
components:
- type: Transform
@@ -112265,7 +114131,7 @@ entities:
pos: -12.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16711
components:
- type: Transform
@@ -112273,7 +114139,7 @@ entities:
pos: -125.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16712
components:
- type: Transform
@@ -112281,7 +114147,7 @@ entities:
pos: -121.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16713
components:
- type: Transform
@@ -112289,7 +114155,7 @@ entities:
pos: -123.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16714
components:
- type: Transform
@@ -112297,7 +114163,7 @@ entities:
pos: -19.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16715
components:
- type: Transform
@@ -112305,7 +114171,7 @@ entities:
pos: -103.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16716
components:
- type: Transform
@@ -112313,7 +114179,7 @@ entities:
pos: -104.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16717
components:
- type: Transform
@@ -112321,7 +114187,7 @@ entities:
pos: -104.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16718
components:
- type: Transform
@@ -112329,7 +114195,7 @@ entities:
pos: -103.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16719
components:
- type: Transform
@@ -112337,7 +114203,7 @@ entities:
pos: -102.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16720
components:
- type: Transform
@@ -112345,7 +114211,7 @@ entities:
pos: -28.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16721
components:
- type: Transform
@@ -112353,14 +114219,14 @@ entities:
pos: -87.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16722
components:
- type: Transform
pos: -134.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16723
components:
- type: Transform
@@ -112368,7 +114234,7 @@ entities:
pos: -125.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16724
components:
- type: Transform
@@ -112388,7 +114254,7 @@ entities:
pos: -126.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16727
components:
- type: Transform
@@ -112396,7 +114262,7 @@ entities:
pos: -67.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16728
components:
- type: Transform
@@ -112404,7 +114270,7 @@ entities:
pos: -59.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16729
components:
- type: Transform
@@ -112412,7 +114278,7 @@ entities:
pos: -138.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16730
components:
- type: Transform
@@ -112420,7 +114286,7 @@ entities:
pos: -135.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16731
components:
- type: Transform
@@ -112428,7 +114294,7 @@ entities:
pos: -127.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16732
components:
- type: Transform
@@ -112436,7 +114302,7 @@ entities:
pos: -130.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16733
components:
- type: Transform
@@ -112444,7 +114310,7 @@ entities:
pos: -128.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16734
components:
- type: Transform
@@ -112480,7 +114346,7 @@ entities:
pos: -129.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16739
components:
- type: Transform
@@ -112488,7 +114354,7 @@ entities:
pos: -132.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16740
components:
- type: Transform
@@ -112501,7 +114367,7 @@ entities:
pos: -139.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16742
components:
- type: Transform
@@ -112553,7 +114419,7 @@ entities:
pos: -136.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16748
components:
- type: Transform
@@ -112561,7 +114427,7 @@ entities:
pos: -134.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16749
components:
- type: Transform
@@ -112569,7 +114435,7 @@ entities:
pos: -143.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16750
components:
- type: Transform
@@ -112577,7 +114443,7 @@ entities:
pos: -24.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16751
components:
- type: Transform
@@ -112585,21 +114451,21 @@ entities:
pos: -24.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16752
components:
- type: Transform
pos: -29.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16753
components:
- type: Transform
pos: -24.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16754
components:
- type: Transform
@@ -112607,7 +114473,7 @@ entities:
pos: -139.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16755
components:
- type: Transform
@@ -112615,7 +114481,7 @@ entities:
pos: -20.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16756
components:
- type: Transform
@@ -112623,21 +114489,21 @@ entities:
pos: -94.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16757
components:
- type: Transform
pos: -94.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16758
components:
- type: Transform
pos: -94.5,35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16759
components:
- type: Transform
@@ -112645,7 +114511,7 @@ entities:
pos: -43.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16760
components:
- type: Transform
@@ -112653,7 +114519,7 @@ entities:
pos: -53.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16761
components:
- type: Transform
@@ -112661,7 +114527,7 @@ entities:
pos: -73.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16762
components:
- type: Transform
@@ -112669,7 +114535,7 @@ entities:
pos: -70.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16763
components:
- type: Transform
@@ -112677,7 +114543,7 @@ entities:
pos: -69.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16764
components:
- type: Transform
@@ -112685,7 +114551,7 @@ entities:
pos: -68.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16765
components:
- type: Transform
@@ -112693,7 +114559,7 @@ entities:
pos: -72.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16766
components:
- type: Transform
@@ -112701,7 +114567,7 @@ entities:
pos: -92.5,34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16767
components:
- type: Transform
@@ -112709,7 +114575,7 @@ entities:
pos: -54.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16768
components:
- type: Transform
@@ -112717,7 +114583,7 @@ entities:
pos: -52.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16769
components:
- type: Transform
@@ -112725,7 +114591,7 @@ entities:
pos: -51.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16770
components:
- type: Transform
@@ -112733,7 +114599,7 @@ entities:
pos: -50.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16771
components:
- type: Transform
@@ -112741,7 +114607,7 @@ entities:
pos: -49.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16772
components:
- type: Transform
@@ -112749,7 +114615,7 @@ entities:
pos: -48.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16773
components:
- type: Transform
@@ -112757,7 +114623,7 @@ entities:
pos: -62.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16774
components:
- type: Transform
@@ -112765,7 +114631,7 @@ entities:
pos: -63.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16775
components:
- type: Transform
@@ -112773,7 +114639,7 @@ entities:
pos: -61.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16776
components:
- type: Transform
@@ -112781,7 +114647,7 @@ entities:
pos: -59.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16777
components:
- type: Transform
@@ -112789,7 +114655,7 @@ entities:
pos: -58.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16778
components:
- type: Transform
@@ -112797,7 +114663,7 @@ entities:
pos: -56.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16779
components:
- type: Transform
@@ -112805,7 +114671,7 @@ entities:
pos: -44.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16780
components:
- type: Transform
@@ -112813,7 +114679,7 @@ entities:
pos: -45.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16781
components:
- type: Transform
@@ -112821,7 +114687,7 @@ entities:
pos: -47.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16782
components:
- type: Transform
@@ -112829,7 +114695,7 @@ entities:
pos: -48.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16783
components:
- type: Transform
@@ -112837,7 +114703,7 @@ entities:
pos: -49.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16784
components:
- type: Transform
@@ -112845,7 +114711,7 @@ entities:
pos: -50.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16785
components:
- type: Transform
@@ -112853,7 +114719,7 @@ entities:
pos: -51.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16786
components:
- type: Transform
@@ -112861,7 +114727,7 @@ entities:
pos: -52.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16787
components:
- type: Transform
@@ -112869,7 +114735,7 @@ entities:
pos: -46.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16788
components:
- type: Transform
@@ -112877,7 +114743,7 @@ entities:
pos: -54.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16789
components:
- type: Transform
@@ -112885,7 +114751,7 @@ entities:
pos: -55.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16790
components:
- type: Transform
@@ -112893,7 +114759,7 @@ entities:
pos: -56.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16791
components:
- type: Transform
@@ -112901,7 +114767,7 @@ entities:
pos: -56.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16792
components:
- type: Transform
@@ -112909,7 +114775,7 @@ entities:
pos: -74.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16793
components:
- type: Transform
@@ -112917,7 +114783,7 @@ entities:
pos: -73.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16794
components:
- type: Transform
@@ -112925,7 +114791,7 @@ entities:
pos: -71.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16795
components:
- type: Transform
@@ -112933,7 +114799,7 @@ entities:
pos: -70.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16796
components:
- type: Transform
@@ -112941,7 +114807,7 @@ entities:
pos: -69.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16797
components:
- type: Transform
@@ -112949,7 +114815,7 @@ entities:
pos: -68.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16798
components:
- type: Transform
@@ -112957,7 +114823,7 @@ entities:
pos: -66.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16799
components:
- type: Transform
@@ -112965,7 +114831,7 @@ entities:
pos: -72.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16800
components:
- type: Transform
@@ -112973,7 +114839,7 @@ entities:
pos: -57.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16801
components:
- type: Transform
@@ -112981,7 +114847,7 @@ entities:
pos: -61.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16802
components:
- type: Transform
@@ -112989,7 +114855,7 @@ entities:
pos: -60.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16803
components:
- type: Transform
@@ -112997,7 +114863,7 @@ entities:
pos: -59.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16804
components:
- type: Transform
@@ -113005,7 +114871,7 @@ entities:
pos: -63.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16805
components:
- type: Transform
@@ -113013,7 +114879,7 @@ entities:
pos: -70.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16806
components:
- type: Transform
@@ -113021,7 +114887,7 @@ entities:
pos: -16.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16807
components:
- type: Transform
@@ -113037,14 +114903,14 @@ entities:
pos: -31.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16809
components:
- type: Transform
pos: -36.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16810
components:
- type: Transform
@@ -113052,7 +114918,7 @@ entities:
pos: -35.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16811
components:
- type: Transform
@@ -113060,7 +114926,7 @@ entities:
pos: -31.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16812
components:
- type: Transform
@@ -113068,7 +114934,7 @@ entities:
pos: -30.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16813
components:
- type: Transform
@@ -113076,7 +114942,7 @@ entities:
pos: -29.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16814
components:
- type: Transform
@@ -113084,7 +114950,7 @@ entities:
pos: -32.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16815
components:
- type: Transform
@@ -113092,7 +114958,7 @@ entities:
pos: -79.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16816
components:
- type: Transform
@@ -113100,7 +114966,7 @@ entities:
pos: -25.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16817
components:
- type: Transform
@@ -113108,7 +114974,7 @@ entities:
pos: -25.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16818
components:
- type: Transform
@@ -113116,7 +114982,7 @@ entities:
pos: -25.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16819
components:
- type: Transform
@@ -113124,7 +114990,7 @@ entities:
pos: -25.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16820
components:
- type: Transform
@@ -113132,7 +114998,7 @@ entities:
pos: -28.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16821
components:
- type: Transform
@@ -113140,7 +115006,7 @@ entities:
pos: -27.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16822
components:
- type: Transform
@@ -113148,35 +115014,35 @@ entities:
pos: -26.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16823
components:
- type: Transform
pos: -24.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16824
components:
- type: Transform
pos: -24.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16825
components:
- type: Transform
pos: -24.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16826
components:
- type: Transform
pos: -24.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16827
components:
- type: Transform
@@ -113184,7 +115050,7 @@ entities:
pos: -23.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16828
components:
- type: Transform
@@ -113192,7 +115058,7 @@ entities:
pos: -22.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16829
components:
- type: Transform
@@ -113200,7 +115066,7 @@ entities:
pos: -21.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16830
components:
- type: Transform
@@ -113208,21 +115074,21 @@ entities:
pos: -20.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16831
components:
- type: Transform
pos: -24.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16832
components:
- type: Transform
pos: -24.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16833
components:
- type: Transform
@@ -113238,7 +115104,7 @@ entities:
pos: -118.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16835
components:
- type: Transform
@@ -113246,7 +115112,7 @@ entities:
pos: -20.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16836
components:
- type: Transform
@@ -113254,7 +115120,7 @@ entities:
pos: -19.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16837
components:
- type: Transform
@@ -113262,7 +115128,7 @@ entities:
pos: -20.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16838
components:
- type: Transform
@@ -113270,7 +115136,7 @@ entities:
pos: -22.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16839
components:
- type: Transform
@@ -113278,7 +115144,7 @@ entities:
pos: -21.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16840
components:
- type: Transform
@@ -113298,28 +115164,28 @@ entities:
pos: -15.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16843
components:
- type: Transform
pos: -94.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16844
components:
- type: Transform
pos: -94.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16845
components:
- type: Transform
pos: -94.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16846
components:
- type: Transform
@@ -113333,7 +115199,7 @@ entities:
pos: -97.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16848
components:
- type: Transform
@@ -113341,7 +115207,7 @@ entities:
pos: -72.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16849
components:
- type: Transform
@@ -113349,7 +115215,7 @@ entities:
pos: -71.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16850
components:
- type: Transform
@@ -113357,7 +115223,7 @@ entities:
pos: -72.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16851
components:
- type: Transform
@@ -113365,7 +115231,7 @@ entities:
pos: -34.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16852
components:
- type: Transform
@@ -113373,49 +115239,49 @@ entities:
pos: -33.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16853
components:
- type: Transform
pos: -32.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16854
components:
- type: Transform
pos: -32.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16855
components:
- type: Transform
pos: -32.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16856
components:
- type: Transform
pos: -32.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16857
components:
- type: Transform
pos: -33.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16858
components:
- type: Transform
pos: -33.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16859
components:
- type: Transform
@@ -113423,7 +115289,7 @@ entities:
pos: -34.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16860
components:
- type: Transform
@@ -113431,7 +115297,7 @@ entities:
pos: -35.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16861
components:
- type: Transform
@@ -113439,7 +115305,7 @@ entities:
pos: -37.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16862
components:
- type: Transform
@@ -113447,7 +115313,7 @@ entities:
pos: -38.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16863
components:
- type: Transform
@@ -113455,7 +115321,7 @@ entities:
pos: -36.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16864
components:
- type: Transform
@@ -113463,7 +115329,7 @@ entities:
pos: -36.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16865
components:
- type: Transform
@@ -113471,7 +115337,7 @@ entities:
pos: -27.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16866
components:
- type: Transform
@@ -113479,7 +115345,7 @@ entities:
pos: -30.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16867
components:
- type: Transform
@@ -113487,7 +115353,7 @@ entities:
pos: -31.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16868
components:
- type: Transform
@@ -113495,7 +115361,7 @@ entities:
pos: -32.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16869
components:
- type: Transform
@@ -113503,7 +115369,7 @@ entities:
pos: -33.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16870
components:
- type: Transform
@@ -113511,7 +115377,7 @@ entities:
pos: -50.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16871
components:
- type: Transform
@@ -113519,7 +115385,7 @@ entities:
pos: -51.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16872
components:
- type: Transform
@@ -113527,7 +115393,7 @@ entities:
pos: -52.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16873
components:
- type: Transform
@@ -113535,7 +115401,7 @@ entities:
pos: -53.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16874
components:
- type: Transform
@@ -113543,7 +115409,7 @@ entities:
pos: -55.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16875
components:
- type: Transform
@@ -113551,7 +115417,7 @@ entities:
pos: -56.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16876
components:
- type: Transform
@@ -113559,7 +115425,7 @@ entities:
pos: -54.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16877
components:
- type: Transform
@@ -113567,7 +115433,7 @@ entities:
pos: -56.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16878
components:
- type: Transform
@@ -113575,7 +115441,7 @@ entities:
pos: -55.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16879
components:
- type: Transform
@@ -113583,7 +115449,7 @@ entities:
pos: -54.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16880
components:
- type: Transform
@@ -113591,7 +115457,7 @@ entities:
pos: -53.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16881
components:
- type: Transform
@@ -113599,7 +115465,7 @@ entities:
pos: -52.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16882
components:
- type: Transform
@@ -113607,7 +115473,7 @@ entities:
pos: -51.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16883
components:
- type: Transform
@@ -113615,7 +115481,7 @@ entities:
pos: -50.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16884
components:
- type: Transform
@@ -113623,7 +115489,7 @@ entities:
pos: -49.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16885
components:
- type: Transform
@@ -113631,7 +115497,7 @@ entities:
pos: -37.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16886
components:
- type: Transform
@@ -113639,7 +115505,7 @@ entities:
pos: -38.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16887
components:
- type: Transform
@@ -113647,7 +115513,7 @@ entities:
pos: -39.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16888
components:
- type: Transform
@@ -113655,7 +115521,7 @@ entities:
pos: -34.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16889
components:
- type: Transform
@@ -113663,7 +115529,7 @@ entities:
pos: -40.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16890
components:
- type: Transform
@@ -113671,7 +115537,7 @@ entities:
pos: -42.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16891
components:
- type: Transform
@@ -113679,7 +115545,7 @@ entities:
pos: -41.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16892
components:
- type: Transform
@@ -113687,7 +115553,7 @@ entities:
pos: -16.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16893
components:
- type: Transform
@@ -113695,7 +115561,7 @@ entities:
pos: -17.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16894
components:
- type: Transform
@@ -113703,7 +115569,7 @@ entities:
pos: -18.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16895
components:
- type: Transform
@@ -113711,7 +115577,7 @@ entities:
pos: -21.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16896
components:
- type: Transform
@@ -113719,7 +115585,7 @@ entities:
pos: -20.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16897
components:
- type: Transform
@@ -113727,7 +115593,7 @@ entities:
pos: -24.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16898
components:
- type: Transform
@@ -113735,7 +115601,7 @@ entities:
pos: -25.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16899
components:
- type: Transform
@@ -113743,7 +115609,7 @@ entities:
pos: -19.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16900
components:
- type: Transform
@@ -113751,7 +115617,7 @@ entities:
pos: -27.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16901
components:
- type: Transform
@@ -113759,7 +115625,7 @@ entities:
pos: -26.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16902
components:
- type: Transform
@@ -113767,7 +115633,7 @@ entities:
pos: -28.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16903
components:
- type: Transform
@@ -113775,7 +115641,7 @@ entities:
pos: -23.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16904
components:
- type: Transform
@@ -113783,7 +115649,7 @@ entities:
pos: -23.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16905
components:
- type: Transform
@@ -113791,7 +115657,7 @@ entities:
pos: -23.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16906
components:
- type: Transform
@@ -113799,7 +115665,7 @@ entities:
pos: -35.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16907
components:
- type: Transform
@@ -113807,7 +115673,7 @@ entities:
pos: -35.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16908
components:
- type: Transform
@@ -113815,7 +115681,7 @@ entities:
pos: -35.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16909
components:
- type: Transform
@@ -113823,7 +115689,7 @@ entities:
pos: -35.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16910
components:
- type: Transform
@@ -113831,7 +115697,7 @@ entities:
pos: -26.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16911
components:
- type: Transform
@@ -113839,7 +115705,7 @@ entities:
pos: -27.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16912
components:
- type: Transform
@@ -113847,7 +115713,7 @@ entities:
pos: -94.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16913
components:
- type: Transform
@@ -113855,7 +115721,7 @@ entities:
pos: -106.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16914
components:
- type: Transform
@@ -113863,7 +115729,7 @@ entities:
pos: -107.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16915
components:
- type: Transform
@@ -113871,7 +115737,7 @@ entities:
pos: -106.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16916
components:
- type: Transform
@@ -113879,7 +115745,7 @@ entities:
pos: -107.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16917
components:
- type: Transform
@@ -113887,7 +115753,7 @@ entities:
pos: -109.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16918
components:
- type: Transform
@@ -113895,7 +115761,7 @@ entities:
pos: -110.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16919
components:
- type: Transform
@@ -113903,7 +115769,7 @@ entities:
pos: -111.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16920
components:
- type: Transform
@@ -113911,7 +115777,7 @@ entities:
pos: -112.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16921
components:
- type: Transform
@@ -113919,7 +115785,7 @@ entities:
pos: -108.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16922
components:
- type: Transform
@@ -113927,7 +115793,7 @@ entities:
pos: -113.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16923
components:
- type: Transform
@@ -113935,7 +115801,7 @@ entities:
pos: -114.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16924
components:
- type: Transform
@@ -113979,7 +115845,7 @@ entities:
pos: -106.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16930
components:
- type: Transform
@@ -113987,7 +115853,7 @@ entities:
pos: -105.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16931
components:
- type: Transform
@@ -113995,7 +115861,7 @@ entities:
pos: -115.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16932
components:
- type: Transform
@@ -114003,7 +115869,7 @@ entities:
pos: -116.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16933
components:
- type: Transform
@@ -114011,7 +115877,7 @@ entities:
pos: -117.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16934
components:
- type: Transform
@@ -114019,7 +115885,7 @@ entities:
pos: -118.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16935
components:
- type: Transform
@@ -114027,7 +115893,7 @@ entities:
pos: -119.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16936
components:
- type: Transform
@@ -114035,7 +115901,7 @@ entities:
pos: -107.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16937
components:
- type: Transform
@@ -114043,7 +115909,7 @@ entities:
pos: -108.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16938
components:
- type: Transform
@@ -114051,7 +115917,7 @@ entities:
pos: -109.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16939
components:
- type: Transform
@@ -114059,7 +115925,7 @@ entities:
pos: -110.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16940
components:
- type: Transform
@@ -114067,7 +115933,7 @@ entities:
pos: -111.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16941
components:
- type: Transform
@@ -114075,7 +115941,7 @@ entities:
pos: -112.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16942
components:
- type: Transform
@@ -114083,7 +115949,7 @@ entities:
pos: -113.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16943
components:
- type: Transform
@@ -114091,56 +115957,56 @@ entities:
pos: -114.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16944
components:
- type: Transform
pos: -120.5,-58.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16945
components:
- type: Transform
pos: -120.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16946
components:
- type: Transform
pos: -120.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16947
components:
- type: Transform
pos: -120.5,-61.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16948
components:
- type: Transform
pos: -120.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16949
components:
- type: Transform
pos: -120.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16950
components:
- type: Transform
pos: -120.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16951
components:
- type: Transform
@@ -114155,7 +116021,7 @@ entities:
pos: -120.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16953
components:
- type: Transform
@@ -114214,7 +116080,7 @@ entities:
pos: -120.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16961
components:
- type: Transform
@@ -114337,7 +116203,7 @@ entities:
pos: -121.5,-67.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16977
components:
- type: Transform
@@ -114417,7 +116283,7 @@ entities:
pos: -80.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16988
components:
- type: Transform
@@ -114425,7 +116291,7 @@ entities:
pos: -97.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16989
components:
- type: Transform
@@ -114433,7 +116299,7 @@ entities:
pos: -96.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16990
components:
- type: Transform
@@ -114441,7 +116307,7 @@ entities:
pos: -95.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16991
components:
- type: Transform
@@ -114449,7 +116315,7 @@ entities:
pos: -104.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16992
components:
- type: Transform
@@ -114465,7 +116331,7 @@ entities:
pos: -23.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16994
components:
- type: Transform
@@ -114473,7 +116339,7 @@ entities:
pos: -20.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16995
components:
- type: Transform
@@ -114489,14 +116355,14 @@ entities:
pos: -27.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 16997
components:
- type: Transform
pos: -25.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16998
components:
- type: Transform
@@ -114504,7 +116370,7 @@ entities:
pos: -23.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 16999
components:
- type: Transform
@@ -114512,7 +116378,7 @@ entities:
pos: -24.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17000
components:
- type: Transform
@@ -114520,7 +116386,7 @@ entities:
pos: -29.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17001
components:
- type: Transform
@@ -114528,7 +116394,7 @@ entities:
pos: -108.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17002
components:
- type: Transform
@@ -114536,7 +116402,7 @@ entities:
pos: -107.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17003
components:
- type: Transform
@@ -114544,7 +116410,7 @@ entities:
pos: -106.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17004
components:
- type: Transform
@@ -114552,7 +116418,7 @@ entities:
pos: -105.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17005
components:
- type: Transform
@@ -114568,7 +116434,7 @@ entities:
pos: -10.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17007
components:
- type: Transform
@@ -114576,7 +116442,7 @@ entities:
pos: -67.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17008
components:
- type: Transform
@@ -114584,7 +116450,7 @@ entities:
pos: -68.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17009
components:
- type: Transform
@@ -114592,7 +116458,7 @@ entities:
pos: -69.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17010
components:
- type: Transform
@@ -114600,7 +116466,7 @@ entities:
pos: -70.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17011
components:
- type: Transform
@@ -114608,7 +116474,7 @@ entities:
pos: -72.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17012
components:
- type: Transform
@@ -114616,7 +116482,7 @@ entities:
pos: -74.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17013
components:
- type: Transform
@@ -114624,7 +116490,7 @@ entities:
pos: -73.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17014
components:
- type: Transform
@@ -114632,7 +116498,7 @@ entities:
pos: -68.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17015
components:
- type: Transform
@@ -114640,7 +116506,7 @@ entities:
pos: -69.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17016
components:
- type: Transform
@@ -114648,7 +116514,7 @@ entities:
pos: -72.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17017
components:
- type: Transform
@@ -114656,7 +116522,7 @@ entities:
pos: -73.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17018
components:
- type: Transform
@@ -114664,7 +116530,7 @@ entities:
pos: -74.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17019
components:
- type: Transform
@@ -114672,7 +116538,7 @@ entities:
pos: -71.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17020
components:
- type: Transform
@@ -114680,7 +116546,7 @@ entities:
pos: -71.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17021
components:
- type: Transform
@@ -114688,7 +116554,7 @@ entities:
pos: -71.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17022
components:
- type: Transform
@@ -114696,7 +116562,7 @@ entities:
pos: -70.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17023
components:
- type: Transform
@@ -114704,7 +116570,7 @@ entities:
pos: -70.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17024
components:
- type: Transform
@@ -114712,7 +116578,7 @@ entities:
pos: -40.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17025
components:
- type: Transform
@@ -114981,14 +116847,14 @@ entities:
pos: -69.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17060
components:
- type: Transform
pos: -69.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17061
components:
- type: Transform
@@ -114996,7 +116862,7 @@ entities:
pos: -70.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17062
components:
- type: Transform
@@ -115004,14 +116870,14 @@ entities:
pos: -85.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17063
components:
- type: Transform
pos: -109.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17064
components:
- type: Transform
@@ -115019,21 +116885,21 @@ entities:
pos: -112.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17065
components:
- type: Transform
pos: -109.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17066
components:
- type: Transform
pos: -109.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17067
components:
- type: Transform
@@ -115041,36 +116907,28 @@ entities:
pos: -112.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17068
components:
- type: Transform
pos: -103.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17069
components:
- type: Transform
pos: -103.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17070
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17071
components:
- type: Transform
pos: -103.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17072
components:
- type: Transform
@@ -115078,36 +116936,28 @@ entities:
pos: -102.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17073
components:
- type: Transform
pos: -103.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17074
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17075
components:
- type: Transform
pos: -103.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17076
components:
- type: Transform
pos: -103.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17077
components:
- type: Transform
@@ -115115,7 +116965,7 @@ entities:
pos: -100.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17078
components:
- type: Transform
@@ -115123,7 +116973,7 @@ entities:
pos: -99.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17079
components:
- type: Transform
@@ -115131,7 +116981,7 @@ entities:
pos: -98.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17080
components:
- type: Transform
@@ -115139,7 +116989,7 @@ entities:
pos: -97.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17081
components:
- type: Transform
@@ -115147,7 +116997,7 @@ entities:
pos: -96.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17082
components:
- type: Transform
@@ -115155,7 +117005,7 @@ entities:
pos: -95.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17083
components:
- type: Transform
@@ -115163,57 +117013,421 @@ entities:
pos: -94.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17084
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17085
- components:
- - type: Transform
- pos: -91.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17086
- components:
- - type: Transform
- pos: -91.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17087
- components:
- - type: Transform
- pos: -91.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17088
- components:
- - type: Transform
- pos: -91.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17089
- components:
- - type: Transform
- pos: -91.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF0000FF'
- uid: 17090
components:
- type: Transform
pos: -91.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
+ - uid: 27325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27334
+ components:
+ - type: Transform
+ pos: -91.5,-58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27335
+ components:
+ - type: Transform
+ pos: -91.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27336
+ components:
+ - type: Transform
+ pos: -93.5,-58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27347
+ components:
+ - type: Transform
+ pos: -96.5,-67.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27348
+ components:
+ - type: Transform
+ pos: -96.5,-68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-67.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27357
+ components:
+ - type: Transform
+ pos: -94.5,-67.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-67.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-69.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27380
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27381
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-67.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-71.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-70.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-69.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-72.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-72.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-73.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-73.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-73.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27398
+ components:
+ - type: Transform
+ pos: -92.5,-72.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27399
+ components:
+ - type: Transform
+ pos: -92.5,-71.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27400
+ components:
+ - type: Transform
+ pos: -92.5,-70.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
- proto: GasPipeTJunction
entities:
- uid: 17091
@@ -115222,21 +117436,21 @@ entities:
pos: -111.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17092
components:
- type: Transform
pos: -91.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17093
components:
- type: Transform
pos: -69.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17094
components:
- type: Transform
@@ -115244,14 +117458,14 @@ entities:
pos: -121.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17095
components:
- type: Transform
pos: -120.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17096
components:
- type: Transform
@@ -115265,7 +117479,7 @@ entities:
pos: -26.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17098
components:
- type: Transform
@@ -115280,7 +117494,7 @@ entities:
pos: -145.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17100
components:
- type: Transform
@@ -115300,7 +117514,7 @@ entities:
pos: -63.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17103
components:
- type: Transform
@@ -115308,7 +117522,7 @@ entities:
pos: -64.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17104
components:
- type: Transform
@@ -115316,7 +117530,7 @@ entities:
pos: -141.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17105
components:
- type: Transform
@@ -115336,7 +117550,7 @@ entities:
pos: -94.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17108
components:
- type: Transform
@@ -115350,14 +117564,14 @@ entities:
pos: -103.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17110
components:
- type: Transform
pos: -125.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17111
components:
- type: Transform
@@ -115373,7 +117587,7 @@ entities:
pos: -43.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17113
components:
- type: Transform
@@ -115381,7 +117595,7 @@ entities:
pos: -42.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17114
components:
- type: Transform
@@ -115389,7 +117603,7 @@ entities:
pos: -28.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17115
components:
- type: Transform
@@ -115397,7 +117611,7 @@ entities:
pos: -49.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17116
components:
- type: Transform
@@ -115405,7 +117619,7 @@ entities:
pos: -48.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17117
components:
- type: Transform
@@ -115413,7 +117627,7 @@ entities:
pos: -94.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17118
components:
- type: Transform
@@ -115442,7 +117656,7 @@ entities:
pos: -87.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17122
components:
- type: Transform
@@ -115495,14 +117709,14 @@ entities:
pos: -118.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17130
components:
- type: Transform
pos: -120.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17131
components:
- type: Transform
@@ -115510,7 +117724,7 @@ entities:
pos: -105.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17132
components:
- type: Transform
@@ -115524,7 +117738,7 @@ entities:
pos: -130.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17134
components:
- type: Transform
@@ -115532,7 +117746,7 @@ entities:
pos: -21.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17135
components:
- type: Transform
@@ -115540,14 +117754,14 @@ entities:
pos: -26.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17136
components:
- type: Transform
pos: -35.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17137
components:
- type: Transform
@@ -115569,7 +117783,7 @@ entities:
pos: -94.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17140
components:
- type: Transform
@@ -115577,7 +117791,7 @@ entities:
pos: -14.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17141
components:
- type: Transform
@@ -115592,14 +117806,14 @@ entities:
pos: -30.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17143
components:
- type: Transform
pos: -41.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17144
components:
- type: Transform
@@ -115607,7 +117821,7 @@ entities:
pos: -56.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17145
components:
- type: Transform
@@ -115615,7 +117829,7 @@ entities:
pos: -57.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17146
components:
- type: Transform
@@ -115623,21 +117837,21 @@ entities:
pos: -76.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17147
components:
- type: Transform
pos: -68.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17148
components:
- type: Transform
pos: -81.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17149
components:
- type: Transform
@@ -115657,7 +117871,7 @@ entities:
pos: -100.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17152
components:
- type: Transform
@@ -115665,7 +117879,7 @@ entities:
pos: -134.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17153
components:
- type: Transform
@@ -115673,14 +117887,14 @@ entities:
pos: -49.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17154
components:
- type: Transform
pos: -23.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17155
components:
- type: Transform
@@ -115688,7 +117902,7 @@ entities:
pos: -34.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17156
components:
- type: Transform
@@ -115696,7 +117910,7 @@ entities:
pos: -43.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17157
components:
- type: Transform
@@ -115704,7 +117918,7 @@ entities:
pos: -18.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17158
components:
- type: Transform
@@ -115712,7 +117926,7 @@ entities:
pos: -74.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17159
components:
- type: Transform
@@ -115720,7 +117934,7 @@ entities:
pos: -75.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17160
components:
- type: Transform
@@ -115728,7 +117942,7 @@ entities:
pos: -38.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17161
components:
- type: Transform
@@ -115736,7 +117950,7 @@ entities:
pos: -58.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17162
components:
- type: Transform
@@ -115752,7 +117966,7 @@ entities:
pos: -92.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17164
components:
- type: Transform
@@ -115760,7 +117974,7 @@ entities:
pos: -93.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17165
components:
- type: Transform
@@ -115768,7 +117982,7 @@ entities:
pos: -24.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17166
components:
- type: Transform
@@ -115776,7 +117990,7 @@ entities:
pos: -67.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17167
components:
- type: Transform
@@ -115784,7 +117998,7 @@ entities:
pos: -66.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17168
components:
- type: Transform
@@ -115792,7 +118006,7 @@ entities:
pos: -67.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17169
components:
- type: Transform
@@ -115800,7 +118014,7 @@ entities:
pos: -66.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17170
components:
- type: Transform
@@ -115808,7 +118022,7 @@ entities:
pos: -67.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17171
components:
- type: Transform
@@ -115822,7 +118036,7 @@ entities:
pos: -109.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17173
components:
- type: Transform
@@ -115830,28 +118044,28 @@ entities:
pos: -104.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17174
components:
- type: Transform
pos: -55.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17175
components:
- type: Transform
pos: -60.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17176
components:
- type: Transform
pos: -62.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17177
components:
- type: Transform
@@ -115859,14 +118073,14 @@ entities:
pos: -67.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17178
components:
- type: Transform
pos: -56.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17179
components:
- type: Transform
@@ -115874,7 +118088,7 @@ entities:
pos: -56.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17180
components:
- type: Transform
@@ -115890,7 +118104,7 @@ entities:
pos: -55.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17182
components:
- type: Transform
@@ -115898,7 +118112,7 @@ entities:
pos: -55.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17183
components:
- type: Transform
@@ -115906,7 +118120,7 @@ entities:
pos: -55.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17184
components:
- type: Transform
@@ -115914,7 +118128,7 @@ entities:
pos: -56.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17185
components:
- type: Transform
@@ -115922,14 +118136,14 @@ entities:
pos: -56.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17186
components:
- type: Transform
pos: -51.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17187
components:
- type: Transform
@@ -115937,7 +118151,7 @@ entities:
pos: -51.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17188
components:
- type: Transform
@@ -115945,14 +118159,14 @@ entities:
pos: -45.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17189
components:
- type: Transform
pos: -46.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17190
components:
- type: Transform
@@ -115960,7 +118174,7 @@ entities:
pos: -43.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17191
components:
- type: Transform
@@ -115968,7 +118182,7 @@ entities:
pos: -43.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17192
components:
- type: Transform
@@ -115976,7 +118190,7 @@ entities:
pos: -39.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17193
components:
- type: Transform
@@ -115984,14 +118198,14 @@ entities:
pos: -45.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17194
components:
- type: Transform
pos: -51.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17195
components:
- type: Transform
@@ -115999,14 +118213,14 @@ entities:
pos: -49.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17196
components:
- type: Transform
pos: -44.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17197
components:
- type: Transform
@@ -116014,7 +118228,7 @@ entities:
pos: -42.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17198
components:
- type: Transform
@@ -116022,14 +118236,14 @@ entities:
pos: -104.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17199
components:
- type: Transform
pos: -44.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17200
components:
- type: Transform
@@ -116037,7 +118251,7 @@ entities:
pos: -48.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17201
components:
- type: Transform
@@ -116045,14 +118259,14 @@ entities:
pos: -23.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17202
components:
- type: Transform
pos: -101.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17203
components:
- type: Transform
@@ -116060,7 +118274,7 @@ entities:
pos: -85.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17204
components:
- type: Transform
@@ -116068,7 +118282,7 @@ entities:
pos: -66.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17205
components:
- type: Transform
@@ -116082,7 +118296,7 @@ entities:
pos: -104.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17207
components:
- type: Transform
@@ -116090,7 +118304,7 @@ entities:
pos: -66.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17208
components:
- type: Transform
@@ -116098,7 +118312,7 @@ entities:
pos: -43.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17209
components:
- type: Transform
@@ -116106,14 +118320,14 @@ entities:
pos: -48.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17210
components:
- type: Transform
pos: -60.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17211
components:
- type: Transform
@@ -116121,7 +118335,7 @@ entities:
pos: -39.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17212
components:
- type: Transform
@@ -116129,7 +118343,7 @@ entities:
pos: -75.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17213
components:
- type: Transform
@@ -116137,7 +118351,7 @@ entities:
pos: -104.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17214
components:
- type: Transform
@@ -116145,14 +118359,14 @@ entities:
pos: -102.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17215
components:
- type: Transform
pos: -31.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17216
components:
- type: Transform
@@ -116160,21 +118374,21 @@ entities:
pos: -30.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17217
components:
- type: Transform
pos: -29.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17218
components:
- type: Transform
pos: -30.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17219
components:
- type: Transform
@@ -116182,14 +118396,14 @@ entities:
pos: -33.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17220
components:
- type: Transform
pos: -28.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17221
components:
- type: Transform
@@ -116197,7 +118411,7 @@ entities:
pos: -18.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17222
components:
- type: Transform
@@ -116205,7 +118419,7 @@ entities:
pos: -25.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17223
components:
- type: Transform
@@ -116213,7 +118427,7 @@ entities:
pos: -24.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17224
components:
- type: Transform
@@ -116221,7 +118435,7 @@ entities:
pos: -43.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17225
components:
- type: Transform
@@ -116229,7 +118443,7 @@ entities:
pos: -43.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17226
components:
- type: Transform
@@ -116237,7 +118451,7 @@ entities:
pos: -42.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17227
components:
- type: Transform
@@ -116245,7 +118459,7 @@ entities:
pos: -25.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17228
components:
- type: Transform
@@ -116253,7 +118467,7 @@ entities:
pos: -103.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17229
components:
- type: Transform
@@ -116261,14 +118475,14 @@ entities:
pos: -104.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17230
components:
- type: Transform
pos: -104.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17231
components:
- type: Transform
@@ -116276,14 +118490,14 @@ entities:
pos: -25.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17232
components:
- type: Transform
pos: -110.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17233
components:
- type: Transform
@@ -116291,7 +118505,7 @@ entities:
pos: -30.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17234
components:
- type: Transform
@@ -116299,7 +118513,7 @@ entities:
pos: -28.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17235
components:
- type: Transform
@@ -116307,7 +118521,7 @@ entities:
pos: -3.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17236
components:
- type: Transform
@@ -116315,14 +118529,14 @@ entities:
pos: -10.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17237
components:
- type: Transform
pos: -9.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17238
components:
- type: Transform
@@ -116330,7 +118544,7 @@ entities:
pos: -15.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17239
components:
- type: Transform
@@ -116338,7 +118552,7 @@ entities:
pos: -14.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17240
components:
- type: Transform
@@ -116346,7 +118560,7 @@ entities:
pos: -11.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17241
components:
- type: Transform
@@ -116354,7 +118568,7 @@ entities:
pos: -4.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17242
components:
- type: Transform
@@ -116362,7 +118576,7 @@ entities:
pos: -3.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17243
components:
- type: Transform
@@ -116370,7 +118584,7 @@ entities:
pos: -4.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17244
components:
- type: Transform
@@ -116378,7 +118592,7 @@ entities:
pos: -19.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17245
components:
- type: Transform
@@ -116386,7 +118600,7 @@ entities:
pos: -38.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17246
components:
- type: Transform
@@ -116394,7 +118608,7 @@ entities:
pos: -38.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17247
components:
- type: Transform
@@ -116402,14 +118616,14 @@ entities:
pos: -38.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17248
components:
- type: Transform
pos: -22.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17249
components:
- type: Transform
@@ -116417,7 +118631,7 @@ entities:
pos: -30.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17250
components:
- type: Transform
@@ -116425,7 +118639,7 @@ entities:
pos: -103.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17251
components:
- type: Transform
@@ -116433,14 +118647,14 @@ entities:
pos: -105.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17252
components:
- type: Transform
pos: -33.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17253
components:
- type: Transform
@@ -116448,7 +118662,7 @@ entities:
pos: -105.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17254
components:
- type: Transform
@@ -116456,14 +118670,14 @@ entities:
pos: -19.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17255
components:
- type: Transform
pos: -45.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17256
components:
- type: Transform
@@ -116471,14 +118685,14 @@ entities:
pos: -37.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17257
components:
- type: Transform
pos: -33.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17258
components:
- type: Transform
@@ -116486,7 +118700,7 @@ entities:
pos: -37.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17259
components:
- type: Transform
@@ -116494,21 +118708,21 @@ entities:
pos: -58.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17260
components:
- type: Transform
pos: -30.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17261
components:
- type: Transform
pos: -28.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17262
components:
- type: Transform
@@ -116516,7 +118730,7 @@ entities:
pos: -30.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17263
components:
- type: Transform
@@ -116524,7 +118738,7 @@ entities:
pos: -28.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17264
components:
- type: Transform
@@ -116532,7 +118746,7 @@ entities:
pos: -28.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17265
components:
- type: Transform
@@ -116540,7 +118754,7 @@ entities:
pos: -53.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17266
components:
- type: Transform
@@ -116548,14 +118762,14 @@ entities:
pos: -58.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17267
components:
- type: Transform
pos: -21.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17268
components:
- type: Transform
@@ -116563,7 +118777,7 @@ entities:
pos: -104.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17269
components:
- type: Transform
@@ -116571,7 +118785,7 @@ entities:
pos: -45.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17270
components:
- type: Transform
@@ -116579,7 +118793,7 @@ entities:
pos: -14.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17271
components:
- type: Transform
@@ -116587,7 +118801,7 @@ entities:
pos: -15.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17272
components:
- type: Transform
@@ -116601,7 +118815,7 @@ entities:
pos: -22.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17274
components:
- type: Transform
@@ -116609,7 +118823,7 @@ entities:
pos: -22.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17275
components:
- type: Transform
@@ -116617,7 +118831,7 @@ entities:
pos: -4.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17276
components:
- type: Transform
@@ -116625,21 +118839,21 @@ entities:
pos: -4.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17277
components:
- type: Transform
pos: -24.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17278
components:
- type: Transform
pos: -20.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17279
components:
- type: Transform
@@ -116647,14 +118861,14 @@ entities:
pos: -57.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17280
components:
- type: Transform
pos: -27.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17281
components:
- type: Transform
@@ -116662,7 +118876,7 @@ entities:
pos: -68.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17282
components:
- type: Transform
@@ -116670,7 +118884,7 @@ entities:
pos: -28.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17283
components:
- type: Transform
@@ -116678,7 +118892,7 @@ entities:
pos: -64.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17284
components:
- type: Transform
@@ -116686,7 +118900,7 @@ entities:
pos: -53.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17285
components:
- type: Transform
@@ -116694,7 +118908,7 @@ entities:
pos: -51.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17286
components:
- type: Transform
@@ -116702,28 +118916,28 @@ entities:
pos: -55.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17287
components:
- type: Transform
pos: -49.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17288
components:
- type: Transform
pos: -46.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17289
components:
- type: Transform
pos: -59.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17290
components:
- type: Transform
@@ -116731,7 +118945,7 @@ entities:
pos: -37.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17291
components:
- type: Transform
@@ -116739,7 +118953,7 @@ entities:
pos: -34.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17292
components:
- type: Transform
@@ -116747,7 +118961,7 @@ entities:
pos: -34.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17293
components:
- type: Transform
@@ -116755,7 +118969,7 @@ entities:
pos: -4.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17294
components:
- type: Transform
@@ -116763,7 +118977,7 @@ entities:
pos: -28.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17295
components:
- type: Transform
@@ -116777,28 +118991,28 @@ entities:
pos: -44.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17297
components:
- type: Transform
pos: -45.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17298
components:
- type: Transform
pos: -48.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17299
components:
- type: Transform
pos: -48.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17300
components:
- type: Transform
@@ -116806,7 +119020,7 @@ entities:
pos: -42.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17301
components:
- type: Transform
@@ -116814,7 +119028,7 @@ entities:
pos: -11.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17302
components:
- type: Transform
@@ -116822,7 +119036,7 @@ entities:
pos: -15.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17303
components:
- type: Transform
@@ -116830,7 +119044,7 @@ entities:
pos: -14.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17304
components:
- type: Transform
@@ -116838,14 +119052,14 @@ entities:
pos: -85.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17305
components:
- type: Transform
pos: -24.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17306
components:
- type: Transform
@@ -116853,7 +119067,7 @@ entities:
pos: -29.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17307
components:
- type: Transform
@@ -116861,21 +119075,21 @@ entities:
pos: -41.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17308
components:
- type: Transform
pos: -91.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17309
components:
- type: Transform
pos: -18.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17310
components:
- type: Transform
@@ -116883,7 +119097,7 @@ entities:
pos: -89.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17311
components:
- type: Transform
@@ -116891,7 +119105,7 @@ entities:
pos: -105.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17312
components:
- type: Transform
@@ -116899,7 +119113,7 @@ entities:
pos: -74.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17313
components:
- type: Transform
@@ -116907,7 +119121,7 @@ entities:
pos: -84.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17314
components:
- type: Transform
@@ -116915,7 +119129,7 @@ entities:
pos: -66.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17315
components:
- type: Transform
@@ -116923,7 +119137,7 @@ entities:
pos: -4.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17316
components:
- type: Transform
@@ -116931,7 +119145,7 @@ entities:
pos: -75.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17317
components:
- type: Transform
@@ -116939,7 +119153,7 @@ entities:
pos: -74.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17318
components:
- type: Transform
@@ -116947,7 +119161,7 @@ entities:
pos: -42.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17319
components:
- type: Transform
@@ -116955,14 +119169,14 @@ entities:
pos: -79.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17320
components:
- type: Transform
pos: -103.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17321
components:
- type: Transform
@@ -116978,7 +119192,7 @@ entities:
pos: -103.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17323
components:
- type: Transform
@@ -116986,14 +119200,14 @@ entities:
pos: -135.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17324
components:
- type: Transform
pos: -91.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17325
components:
- type: Transform
@@ -117017,14 +119231,14 @@ entities:
pos: -85.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17328
components:
- type: Transform
pos: -81.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17329
components:
- type: Transform
@@ -117032,7 +119246,7 @@ entities:
pos: -81.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17330
components:
- type: Transform
@@ -117040,7 +119254,7 @@ entities:
pos: -30.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17331
components:
- type: Transform
@@ -117048,7 +119262,7 @@ entities:
pos: -28.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17332
components:
- type: Transform
@@ -117056,7 +119270,7 @@ entities:
pos: -91.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17333
components:
- type: Transform
@@ -117064,7 +119278,7 @@ entities:
pos: -91.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17334
components:
- type: Transform
@@ -117072,7 +119286,7 @@ entities:
pos: -90.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17335
components:
- type: Transform
@@ -117080,7 +119294,7 @@ entities:
pos: -50.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17336
components:
- type: Transform
@@ -117088,7 +119302,7 @@ entities:
pos: -51.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17337
components:
- type: Transform
@@ -117102,7 +119316,7 @@ entities:
pos: -93.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17339
components:
- type: Transform
@@ -117110,14 +119324,14 @@ entities:
pos: -87.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17340
components:
- type: Transform
pos: -62.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17341
components:
- type: Transform
@@ -117125,7 +119339,7 @@ entities:
pos: -60.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17342
components:
- type: Transform
@@ -117133,14 +119347,14 @@ entities:
pos: -104.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17343
components:
- type: Transform
pos: -115.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17344
components:
- type: Transform
@@ -117148,7 +119362,7 @@ entities:
pos: -119.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17345
components:
- type: Transform
@@ -117156,7 +119370,7 @@ entities:
pos: -123.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17346
components:
- type: Transform
@@ -117164,7 +119378,7 @@ entities:
pos: -57.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17347
components:
- type: Transform
@@ -117172,14 +119386,14 @@ entities:
pos: -60.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17348
components:
- type: Transform
pos: -62.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17349
components:
- type: Transform
@@ -117187,14 +119401,14 @@ entities:
pos: -18.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17350
components:
- type: Transform
pos: -25.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17351
components:
- type: Transform
@@ -117202,35 +119416,35 @@ entities:
pos: -65.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17352
components:
- type: Transform
pos: -65.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17353
components:
- type: Transform
pos: -98.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17354
components:
- type: Transform
pos: -151.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17355
components:
- type: Transform
pos: -95.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17356
components:
- type: Transform
@@ -117238,14 +119452,14 @@ entities:
pos: -50.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17357
components:
- type: Transform
pos: -94.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17358
components:
- type: Transform
@@ -117253,7 +119467,7 @@ entities:
pos: -67.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17359
components:
- type: Transform
@@ -117261,7 +119475,7 @@ entities:
pos: -88.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17360
components:
- type: Transform
@@ -117269,7 +119483,7 @@ entities:
pos: -119.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17361
components:
- type: Transform
@@ -117277,7 +119491,7 @@ entities:
pos: -66.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17362
components:
- type: Transform
@@ -117285,7 +119499,7 @@ entities:
pos: -61.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17363
components:
- type: Transform
@@ -117293,14 +119507,14 @@ entities:
pos: -60.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17364
components:
- type: Transform
pos: -64.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17365
components:
- type: Transform
@@ -117308,7 +119522,7 @@ entities:
pos: -66.5,-57.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17366
components:
- type: Transform
@@ -117323,7 +119537,7 @@ entities:
pos: -94.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17368
components:
- type: Transform
@@ -117331,7 +119545,7 @@ entities:
pos: -30.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17369
components:
- type: Transform
@@ -117354,7 +119568,7 @@ entities:
pos: -15.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17372
components:
- type: Transform
@@ -117362,7 +119576,7 @@ entities:
pos: -41.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17373
components:
- type: Transform
@@ -117370,7 +119584,7 @@ entities:
pos: -14.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17374
components:
- type: Transform
@@ -117378,7 +119592,7 @@ entities:
pos: -43.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17375
components:
- type: Transform
@@ -117386,7 +119600,7 @@ entities:
pos: -105.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17376
components:
- type: Transform
@@ -117394,7 +119608,7 @@ entities:
pos: -15.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17377
components:
- type: Transform
@@ -117402,7 +119616,7 @@ entities:
pos: -15.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17378
components:
- type: Transform
@@ -117410,7 +119624,7 @@ entities:
pos: -60.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17379
components:
- type: Transform
@@ -117418,7 +119632,7 @@ entities:
pos: -62.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17380
components:
- type: Transform
@@ -117426,7 +119640,7 @@ entities:
pos: -65.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17381
components:
- type: Transform
@@ -117434,35 +119648,35 @@ entities:
pos: -96.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17382
components:
- type: Transform
pos: -53.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17383
components:
- type: Transform
pos: -57.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17384
components:
- type: Transform
pos: -23.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17385
components:
- type: Transform
pos: -64.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17386
components:
- type: Transform
@@ -117470,7 +119684,7 @@ entities:
pos: -75.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17387
components:
- type: Transform
@@ -117478,28 +119692,28 @@ entities:
pos: -93.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17388
components:
- type: Transform
pos: -80.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17389
components:
- type: Transform
pos: -82.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17390
components:
- type: Transform
pos: -72.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17391
components:
- type: Transform
@@ -117507,7 +119721,7 @@ entities:
pos: -68.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17392
components:
- type: Transform
@@ -117515,7 +119729,7 @@ entities:
pos: -65.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17393
components:
- type: Transform
@@ -117523,7 +119737,7 @@ entities:
pos: -96.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17394
components:
- type: Transform
@@ -117531,7 +119745,7 @@ entities:
pos: -55.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17395
components:
- type: Transform
@@ -117539,7 +119753,7 @@ entities:
pos: -65.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17396
components:
- type: Transform
@@ -117547,21 +119761,21 @@ entities:
pos: -68.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17397
components:
- type: Transform
pos: -67.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17398
components:
- type: Transform
pos: -26.5,-60.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17399
components:
- type: Transform
@@ -117569,7 +119783,7 @@ entities:
pos: -56.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17400
components:
- type: Transform
@@ -117577,7 +119791,7 @@ entities:
pos: -67.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17401
components:
- type: Transform
@@ -117585,7 +119799,7 @@ entities:
pos: -67.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17402
components:
- type: Transform
@@ -117593,7 +119807,7 @@ entities:
pos: -25.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17403
components:
- type: Transform
@@ -117606,14 +119820,14 @@ entities:
pos: -141.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17405
components:
- type: Transform
pos: -141.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17406
components:
- type: Transform
@@ -117621,7 +119835,7 @@ entities:
pos: -141.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17407
components:
- type: Transform
@@ -117637,7 +119851,7 @@ entities:
pos: -15.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17409
components:
- type: Transform
@@ -117645,7 +119859,7 @@ entities:
pos: -15.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17410
components:
- type: Transform
@@ -117653,7 +119867,7 @@ entities:
pos: -65.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17411
components:
- type: Transform
@@ -117661,7 +119875,7 @@ entities:
pos: -33.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17412
components:
- type: Transform
@@ -117669,21 +119883,21 @@ entities:
pos: -18.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17413
components:
- type: Transform
pos: -109.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17414
components:
- type: Transform
pos: -99.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17415
components:
- type: Transform
@@ -117691,7 +119905,7 @@ entities:
pos: -94.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17416
components:
- type: Transform
@@ -117699,7 +119913,7 @@ entities:
pos: -96.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17417
components:
- type: Transform
@@ -117707,7 +119921,7 @@ entities:
pos: -96.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17418
components:
- type: Transform
@@ -117715,14 +119929,14 @@ entities:
pos: -96.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17419
components:
- type: Transform
pos: -95.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17420
components:
- type: Transform
@@ -117730,21 +119944,21 @@ entities:
pos: -94.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17421
components:
- type: Transform
pos: -90.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17422
components:
- type: Transform
pos: -92.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17423
components:
- type: Transform
@@ -117752,7 +119966,7 @@ entities:
pos: -90.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17424
components:
- type: Transform
@@ -117760,7 +119974,7 @@ entities:
pos: -92.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17425
components:
- type: Transform
@@ -117768,14 +119982,14 @@ entities:
pos: -91.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17426
components:
- type: Transform
pos: -88.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17427
components:
- type: Transform
@@ -117783,7 +119997,7 @@ entities:
pos: -96.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17428
components:
- type: Transform
@@ -117791,14 +120005,14 @@ entities:
pos: -28.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17429
components:
- type: Transform
pos: -91.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17430
components:
- type: Transform
@@ -117806,7 +120020,7 @@ entities:
pos: -92.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17431
components:
- type: Transform
@@ -117814,7 +120028,7 @@ entities:
pos: -91.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17432
components:
- type: Transform
@@ -117822,7 +120036,7 @@ entities:
pos: -86.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17433
components:
- type: Transform
@@ -117830,7 +120044,7 @@ entities:
pos: -27.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17434
components:
- type: Transform
@@ -117838,7 +120052,7 @@ entities:
pos: -81.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17435
components:
- type: Transform
@@ -117846,7 +120060,7 @@ entities:
pos: -82.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17436
components:
- type: Transform
@@ -117854,7 +120068,7 @@ entities:
pos: -82.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17437
components:
- type: Transform
@@ -117862,7 +120076,7 @@ entities:
pos: -114.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17438
components:
- type: Transform
@@ -117870,7 +120084,7 @@ entities:
pos: -92.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17439
components:
- type: Transform
@@ -117878,7 +120092,7 @@ entities:
pos: -62.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17440
components:
- type: Transform
@@ -117886,7 +120100,7 @@ entities:
pos: -24.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17441
components:
- type: Transform
@@ -117894,7 +120108,7 @@ entities:
pos: -95.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17442
components:
- type: Transform
@@ -117902,7 +120116,7 @@ entities:
pos: -99.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17443
components:
- type: Transform
@@ -117910,7 +120124,7 @@ entities:
pos: -25.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17444
components:
- type: Transform
@@ -117918,7 +120132,7 @@ entities:
pos: -25.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17445
components:
- type: Transform
@@ -117931,7 +120145,7 @@ entities:
pos: -83.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17447
components:
- type: Transform
@@ -117939,7 +120153,7 @@ entities:
pos: -88.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17448
components:
- type: Transform
@@ -117947,14 +120161,14 @@ entities:
pos: -114.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17449
components:
- type: Transform
pos: -126.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17450
components:
- type: Transform
@@ -117962,7 +120176,7 @@ entities:
pos: -114.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17451
components:
- type: Transform
@@ -117970,7 +120184,7 @@ entities:
pos: -25.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17452
components:
- type: Transform
@@ -117986,35 +120200,35 @@ entities:
pos: -99.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17454
components:
- type: Transform
pos: -85.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17455
components:
- type: Transform
pos: -90.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17456
components:
- type: Transform
pos: -98.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17457
components:
- type: Transform
pos: -137.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17458
components:
- type: Transform
@@ -118022,14 +120236,14 @@ entities:
pos: -55.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17459
components:
- type: Transform
pos: -84.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17460
components:
- type: Transform
@@ -118037,7 +120251,7 @@ entities:
pos: -87.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17461
components:
- type: Transform
@@ -118045,21 +120259,21 @@ entities:
pos: -94.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17462
components:
- type: Transform
pos: -89.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17463
components:
- type: Transform
pos: -88.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17464
components:
- type: Transform
@@ -118067,14 +120281,14 @@ entities:
pos: -86.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17465
components:
- type: Transform
pos: -91.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17466
components:
- type: Transform
@@ -118082,7 +120296,7 @@ entities:
pos: -94.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17467
components:
- type: Transform
@@ -118097,7 +120311,7 @@ entities:
pos: -114.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17469
components:
- type: Transform
@@ -118113,14 +120327,14 @@ entities:
pos: -115.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17471
components:
- type: Transform
pos: -121.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17472
components:
- type: Transform
@@ -118144,7 +120358,7 @@ entities:
pos: -115.5,-50.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17475
components:
- type: Transform
@@ -118159,7 +120373,7 @@ entities:
pos: -125.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17477
components:
- type: Transform
@@ -118167,7 +120381,7 @@ entities:
pos: -103.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17478
components:
- type: Transform
@@ -118175,7 +120389,7 @@ entities:
pos: -104.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17479
components:
- type: Transform
@@ -118191,7 +120405,7 @@ entities:
pos: -129.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17481
components:
- type: Transform
@@ -118199,14 +120413,14 @@ entities:
pos: -30.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17482
components:
- type: Transform
pos: -135.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17483
components:
- type: Transform
@@ -118229,7 +120443,7 @@ entities:
pos: -29.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17486
components:
- type: Transform
@@ -118237,7 +120451,7 @@ entities:
pos: -82.5,-76.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17487
components:
- type: Transform
@@ -118245,7 +120459,7 @@ entities:
pos: -76.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17488
components:
- type: Transform
@@ -118253,7 +120467,7 @@ entities:
pos: -72.5,-66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17489
components:
- type: Transform
@@ -118261,7 +120475,7 @@ entities:
pos: -71.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17490
components:
- type: Transform
@@ -118269,7 +120483,7 @@ entities:
pos: -55.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17491
components:
- type: Transform
@@ -118277,7 +120491,7 @@ entities:
pos: -54.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17492
components:
- type: Transform
@@ -118295,7 +120509,7 @@ entities:
pos: -107.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17494
components:
- type: Transform
@@ -118303,7 +120517,7 @@ entities:
pos: -104.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17495
components:
- type: Transform
@@ -118311,14 +120525,14 @@ entities:
pos: -134.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17496
components:
- type: Transform
pos: -137.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17497
components:
- type: Transform
@@ -118326,7 +120540,7 @@ entities:
pos: -29.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17498
components:
- type: Transform
@@ -118334,7 +120548,7 @@ entities:
pos: -39.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17499
components:
- type: Transform
@@ -118342,14 +120556,14 @@ entities:
pos: -88.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17500
components:
- type: Transform
pos: -24.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17501
components:
- type: Transform
@@ -118357,7 +120571,7 @@ entities:
pos: -94.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17502
components:
- type: Transform
@@ -118365,7 +120579,7 @@ entities:
pos: -93.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17503
components:
- type: Transform
@@ -118380,7 +120594,7 @@ entities:
pos: -71.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17505
components:
- type: Transform
@@ -118388,14 +120602,14 @@ entities:
pos: -47.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17506
components:
- type: Transform
pos: -53.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17507
components:
- type: Transform
@@ -118403,7 +120617,7 @@ entities:
pos: -34.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17508
components:
- type: Transform
@@ -118411,14 +120625,14 @@ entities:
pos: -24.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17509
components:
- type: Transform
pos: -23.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17510
components:
- type: Transform
@@ -118426,21 +120640,21 @@ entities:
pos: -68.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17511
components:
- type: Transform
pos: -70.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17512
components:
- type: Transform
pos: -35.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17513
components:
- type: Transform
@@ -118448,7 +120662,7 @@ entities:
pos: -32.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17514
components:
- type: Transform
@@ -118456,7 +120670,7 @@ entities:
pos: -36.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17515
components:
- type: Transform
@@ -118464,7 +120678,7 @@ entities:
pos: -35.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17516
components:
- type: Transform
@@ -118472,7 +120686,7 @@ entities:
pos: -36.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17517
components:
- type: Transform
@@ -118480,7 +120694,7 @@ entities:
pos: -76.5,-55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17518
components:
- type: Transform
@@ -118488,7 +120702,7 @@ entities:
pos: -22.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17519
components:
- type: Transform
@@ -118496,7 +120710,7 @@ entities:
pos: -23.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17520
components:
- type: Transform
@@ -118504,7 +120718,7 @@ entities:
pos: -108.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17521
components:
- type: Transform
@@ -118570,14 +120784,14 @@ entities:
pos: -25.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17530
components:
- type: Transform
pos: -71.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17531
components:
- type: Transform
@@ -118585,7 +120799,7 @@ entities:
pos: -39.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17532
components:
- type: Transform
@@ -118594,17 +120808,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17533
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -129.5,31.5
- parent: 2
- - uid: 17534
- components:
- - type: Transform
- pos: -129.5,35.5
- parent: 2
- uid: 17535
components:
- type: Transform
@@ -118636,7 +120839,53 @@ entities:
pos: -111.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
+ - uid: 27342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27361
+ components:
+ - type: Transform
+ pos: -91.5,-68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-69.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27375
+ components:
+ - type: Transform
+ pos: -92.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
- proto: GasPort
entities:
- uid: 17539
@@ -118823,7 +121072,7 @@ entities:
pos: -118.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17569
components:
- type: Transform
@@ -118845,7 +121094,7 @@ entities:
pos: -109.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17572
components:
- type: Transform
@@ -118872,7 +121121,7 @@ entities:
pos: -26.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17576
components:
- type: Transform
@@ -118893,7 +121142,7 @@ entities:
pos: -120.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17579
components:
- type: Transform
@@ -118918,7 +121167,7 @@ entities:
pos: -72.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17583
components:
- type: Transform
@@ -118926,7 +121175,7 @@ entities:
pos: -71.5,-64.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17584
components:
- type: Transform
@@ -118962,7 +121211,7 @@ entities:
pos: -122.5,-67.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17589
components:
- type: Transform
@@ -119104,7 +121353,7 @@ entities:
pos: -119.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17611
components:
- type: Transform
@@ -119113,7 +121362,7 @@ entities:
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17612
components:
- type: Transform
@@ -119131,17 +121380,6 @@ entities:
color: '#990000FF'
- proto: GasVentPump
entities:
- - uid: 17614
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,-64.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 117
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17615
components:
- type: Transform
@@ -119149,12 +121387,10 @@ entities:
pos: -110.5,-30.5
parent: 2
- type: DeviceNetwork
- configurators:
- - invalid
deviceLists:
- 116
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17616
components:
- type: Transform
@@ -119164,7 +121400,7 @@ entities:
deviceLists:
- 91
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17617
components:
- type: Transform
@@ -119175,14 +121411,14 @@ entities:
deviceLists:
- 13
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17618
components:
- type: Transform
pos: -104.5,36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17619
components:
- type: Transform
@@ -119193,7 +121429,7 @@ entities:
deviceLists:
- 29
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17620
components:
- type: Transform
@@ -119204,7 +121440,7 @@ entities:
deviceLists:
- 48
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17621
components:
- type: Transform
@@ -119215,7 +121451,7 @@ entities:
deviceLists:
- 15
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17622
components:
- type: Transform
@@ -119226,7 +121462,7 @@ entities:
deviceLists:
- 55
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17623
components:
- type: Transform
@@ -119236,7 +121472,7 @@ entities:
deviceLists:
- 90
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17624
components:
- type: Transform
@@ -119247,7 +121483,7 @@ entities:
deviceLists:
- 61
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17625
components:
- type: Transform
@@ -119258,7 +121494,7 @@ entities:
deviceLists:
- 36
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17626
components:
- type: Transform
@@ -119280,7 +121516,7 @@ entities:
deviceLists:
- 61
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17628
components:
- type: Transform
@@ -119291,7 +121527,7 @@ entities:
deviceLists:
- 15
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17629
components:
- type: Transform
@@ -119301,7 +121537,7 @@ entities:
deviceLists:
- 47
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17630
components:
- type: Transform
@@ -119312,7 +121548,7 @@ entities:
deviceLists:
- 95
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17631
components:
- type: Transform
@@ -119320,7 +121556,7 @@ entities:
pos: -141.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17632
components:
- type: Transform
@@ -119331,7 +121567,7 @@ entities:
deviceLists:
- 11
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17633
components:
- type: Transform
@@ -119341,14 +121577,14 @@ entities:
deviceLists:
- 42
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17634
components:
- type: Transform
pos: -48.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17635
components:
- type: Transform
@@ -119360,7 +121596,7 @@ entities:
- 89
- 12661
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17636
components:
- type: Transform
@@ -119368,7 +121604,7 @@ entities:
pos: -62.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17637
components:
- type: Transform
@@ -119381,7 +121617,7 @@ entities:
- 12658
- 17
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17638
components:
- type: Transform
@@ -119389,7 +121625,7 @@ entities:
pos: -73.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17639
components:
- type: Transform
@@ -119397,14 +121633,14 @@ entities:
pos: -137.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17640
components:
- type: Transform
pos: -68.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17641
components:
- type: Transform
@@ -119414,7 +121650,7 @@ entities:
deviceLists:
- 112
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17642
components:
- type: Transform
@@ -119424,14 +121660,14 @@ entities:
deviceLists:
- 80
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17643
components:
- type: Transform
pos: -67.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17644
components:
- type: Transform
@@ -119441,7 +121677,7 @@ entities:
deviceLists:
- 17
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17645
components:
- type: Transform
@@ -119454,7 +121690,7 @@ entities:
- 12658
- 17
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17646
components:
- type: Transform
@@ -119465,7 +121701,7 @@ entities:
- 20
- 12658
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17647
components:
- type: Transform
@@ -119475,7 +121711,7 @@ entities:
deviceLists:
- 43
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17648
components:
- type: Transform
@@ -119486,7 +121722,7 @@ entities:
deviceLists:
- 44
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17649
components:
- type: Transform
@@ -119497,7 +121733,7 @@ entities:
deviceLists:
- 44
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17650
components:
- type: Transform
@@ -119508,7 +121744,7 @@ entities:
deviceLists:
- 18
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17651
components:
- type: Transform
@@ -119518,7 +121754,7 @@ entities:
deviceLists:
- 18
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17652
components:
- type: Transform
@@ -119529,7 +121765,7 @@ entities:
deviceLists:
- 19
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17653
components:
- type: Transform
@@ -119540,7 +121776,7 @@ entities:
deviceLists:
- 62
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17654
components:
- type: Transform
@@ -119548,7 +121784,7 @@ entities:
pos: -41.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17655
components:
- type: Transform
@@ -119559,7 +121795,7 @@ entities:
deviceLists:
- 49
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17656
components:
- type: Transform
@@ -119572,7 +121808,7 @@ entities:
- 12679
- 17
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17657
components:
- type: Transform
@@ -119580,14 +121816,14 @@ entities:
pos: -37.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17658
components:
- type: Transform
pos: -29.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17659
components:
- type: Transform
@@ -119595,7 +121831,7 @@ entities:
pos: -37.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17660
components:
- type: Transform
@@ -119605,7 +121841,7 @@ entities:
deviceLists:
- 36
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17661
components:
- type: Transform
@@ -119615,7 +121851,7 @@ entities:
deviceLists:
- 62
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17662
components:
- type: Transform
@@ -119626,7 +121862,7 @@ entities:
deviceLists:
- 46
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17663
components:
- type: Transform
@@ -119637,7 +121873,7 @@ entities:
deviceLists:
- 46
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17664
components:
- type: Transform
@@ -119645,7 +121881,7 @@ entities:
pos: -25.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17665
components:
- type: Transform
@@ -119656,7 +121892,7 @@ entities:
- 48
- 115
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17666
components:
- type: Transform
@@ -119667,7 +121903,7 @@ entities:
deviceLists:
- 48
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17667
components:
- type: Transform
@@ -119675,7 +121911,7 @@ entities:
pos: 0.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17668
components:
- type: Transform
@@ -119683,7 +121919,7 @@ entities:
pos: 0.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17669
components:
- type: Transform
@@ -119691,7 +121927,7 @@ entities:
pos: 0.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17670
components:
- type: Transform
@@ -119699,7 +121935,7 @@ entities:
pos: 0.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17671
components:
- type: Transform
@@ -119709,7 +121945,7 @@ entities:
deviceLists:
- 31
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17672
components:
- type: Transform
@@ -119720,7 +121956,7 @@ entities:
deviceLists:
- 31
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17673
components:
- type: Transform
@@ -119730,7 +121966,7 @@ entities:
deviceLists:
- 31
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17674
components:
- type: Transform
@@ -119738,7 +121974,7 @@ entities:
pos: -29.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17675
components:
- type: Transform
@@ -119749,7 +121985,7 @@ entities:
deviceLists:
- 54
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17676
components:
- type: Transform
@@ -119760,7 +121996,7 @@ entities:
deviceLists:
- 35
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17677
components:
- type: Transform
@@ -119771,7 +122007,7 @@ entities:
deviceLists:
- 35
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17678
components:
- type: Transform
@@ -119782,7 +122018,7 @@ entities:
deviceLists:
- 39
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17679
components:
- type: Transform
@@ -119792,7 +122028,7 @@ entities:
deviceLists:
- 105
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17680
components:
- type: Transform
@@ -119803,7 +122039,7 @@ entities:
deviceLists:
- 53
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17681
components:
- type: Transform
@@ -119814,7 +122050,7 @@ entities:
deviceLists:
- 48
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17682
components:
- type: Transform
@@ -119822,7 +122058,7 @@ entities:
pos: -20.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17683
components:
- type: Transform
@@ -119833,7 +122069,7 @@ entities:
deviceLists:
- 21
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17684
components:
- type: Transform
@@ -119843,7 +122079,7 @@ entities:
deviceLists:
- 21
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17685
components:
- type: Transform
@@ -119853,7 +122089,7 @@ entities:
deviceLists:
- 34
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17686
components:
- type: Transform
@@ -119905,14 +122141,14 @@ entities:
pos: -5.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17691
components:
- type: Transform
pos: -11.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17692
components:
- type: Transform
@@ -119920,7 +122156,7 @@ entities:
pos: -15.5,-68.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17693
components:
- type: Transform
@@ -119931,7 +122167,7 @@ entities:
deviceLists:
- 115
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17694
components:
- type: Transform
@@ -119942,7 +122178,7 @@ entities:
deviceLists:
- 48
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17695
components:
- type: Transform
@@ -119953,7 +122189,7 @@ entities:
deviceLists:
- 114
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17696
components:
- type: Transform
@@ -119961,7 +122197,7 @@ entities:
pos: -84.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17697
components:
- type: Transform
@@ -119969,7 +122205,7 @@ entities:
pos: -92.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17698
components:
- type: Transform
@@ -119980,7 +122216,7 @@ entities:
deviceLists:
- 63
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17699
components:
- type: Transform
@@ -119988,7 +122224,7 @@ entities:
pos: -140.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17700
components:
- type: Transform
@@ -119996,14 +122232,14 @@ entities:
pos: -84.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17701
components:
- type: Transform
pos: -88.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17702
components:
- type: Transform
@@ -120014,7 +122250,7 @@ entities:
deviceLists:
- 52
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17703
components:
- type: Transform
@@ -120022,7 +122258,7 @@ entities:
pos: -99.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17704
components:
- type: Transform
@@ -120033,7 +122269,7 @@ entities:
deviceLists:
- 50
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17705
components:
- type: Transform
@@ -120044,7 +122280,7 @@ entities:
deviceLists:
- 40
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17706
components:
- type: Transform
@@ -120052,7 +122288,7 @@ entities:
pos: -126.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17707
components:
- type: Transform
@@ -120064,14 +122300,14 @@ entities:
- 89
- 12661
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17708
components:
- type: Transform
pos: -130.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17709
components:
- type: Transform
@@ -120082,7 +122318,7 @@ entities:
deviceLists:
- 106
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17710
components:
- type: Transform
@@ -120093,7 +122329,7 @@ entities:
deviceLists:
- 65
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17711
components:
- type: Transform
@@ -120103,7 +122339,7 @@ entities:
deviceLists:
- 37
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17712
components:
- type: Transform
@@ -120114,7 +122350,7 @@ entities:
deviceLists:
- 97
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17713
components:
- type: Transform
@@ -120125,7 +122361,7 @@ entities:
deviceLists:
- 57
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17714
components:
- type: Transform
@@ -120135,7 +122371,7 @@ entities:
deviceLists:
- 58
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17715
components:
- type: Transform
@@ -120143,14 +122379,14 @@ entities:
pos: -60.5,-52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17716
components:
- type: Transform
pos: -66.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17717
components:
- type: Transform
@@ -120161,7 +122397,7 @@ entities:
deviceLists:
- 53
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17718
components:
- type: Transform
@@ -120171,7 +122407,7 @@ entities:
deviceLists:
- 59
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17719
components:
- type: Transform
@@ -120182,7 +122418,7 @@ entities:
deviceLists:
- 59
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17720
components:
- type: Transform
@@ -120193,7 +122429,7 @@ entities:
deviceLists:
- 59
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17721
components:
- type: Transform
@@ -120203,7 +122439,7 @@ entities:
deviceLists:
- 59
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17722
components:
- type: Transform
@@ -120211,7 +122447,7 @@ entities:
pos: -151.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17723
components:
- type: Transform
@@ -120221,7 +122457,7 @@ entities:
deviceLists:
- 84
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17724
components:
- type: Transform
@@ -120232,7 +122468,7 @@ entities:
- 101
- 12662
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17725
components:
- type: Transform
@@ -120242,7 +122478,7 @@ entities:
deviceLists:
- 96
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17726
components:
- type: Transform
@@ -120253,7 +122489,7 @@ entities:
deviceLists:
- 75
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17727
components:
- type: Transform
@@ -120264,7 +122500,7 @@ entities:
deviceLists:
- 13
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17728
components:
- type: Transform
@@ -120275,7 +122511,7 @@ entities:
deviceLists:
- 96
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17729
components:
- type: Transform
@@ -120285,7 +122521,7 @@ entities:
deviceLists:
- 77
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17730
components:
- type: Transform
@@ -120296,7 +122532,7 @@ entities:
deviceLists:
- 76
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17731
components:
- type: Transform
@@ -120307,7 +122543,7 @@ entities:
deviceLists:
- 15
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17732
components:
- type: Transform
@@ -120318,7 +122554,7 @@ entities:
deviceLists:
- 37
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17733
components:
- type: Transform
@@ -120328,7 +122564,7 @@ entities:
deviceLists:
- 103
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17734
components:
- type: Transform
@@ -120336,7 +122572,7 @@ entities:
pos: -18.5,-65.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17735
components:
- type: Transform
@@ -120347,7 +122583,7 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17736
components:
- type: Transform
@@ -120358,7 +122594,7 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17737
components:
- type: Transform
@@ -120369,7 +122605,7 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17738
components:
- type: Transform
@@ -120380,14 +122616,14 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17739
components:
- type: Transform
pos: -88.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17740
components:
- type: Transform
@@ -120397,7 +122633,7 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17741
components:
- type: Transform
@@ -120407,7 +122643,7 @@ entities:
deviceLists:
- 66
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17742
components:
- type: Transform
@@ -120417,7 +122653,7 @@ entities:
deviceLists:
- 66
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17743
components:
- type: Transform
@@ -120427,7 +122663,7 @@ entities:
deviceLists:
- 67
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17744
components:
- type: Transform
@@ -120438,7 +122674,7 @@ entities:
deviceLists:
- 67
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17745
components:
- type: Transform
@@ -120449,7 +122685,7 @@ entities:
deviceLists:
- 74
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17746
components:
- type: Transform
@@ -120457,7 +122693,7 @@ entities:
pos: -46.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17747
components:
- type: Transform
@@ -120465,7 +122701,7 @@ entities:
pos: -33.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17748
components:
- type: Transform
@@ -120473,14 +122709,14 @@ entities:
pos: -49.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17749
components:
- type: Transform
pos: -55.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17750
components:
- type: Transform
@@ -120491,7 +122727,7 @@ entities:
deviceLists:
- 68
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17751
components:
- type: Transform
@@ -120502,7 +122738,7 @@ entities:
deviceLists:
- 71
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17752
components:
- type: Transform
@@ -120513,7 +122749,7 @@ entities:
deviceLists:
- 71
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17753
components:
- type: Transform
@@ -120524,7 +122760,7 @@ entities:
deviceLists:
- 71
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17754
components:
- type: Transform
@@ -120535,14 +122771,14 @@ entities:
deviceLists:
- 78
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17755
components:
- type: Transform
pos: -125.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17756
components:
- type: Transform
@@ -120550,7 +122786,7 @@ entities:
pos: -98.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17757
components:
- type: Transform
@@ -120561,7 +122797,7 @@ entities:
deviceLists:
- 81
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17758
components:
- type: Transform
@@ -120573,14 +122809,14 @@ entities:
- 89
- 12661
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17759
components:
- type: Transform
pos: -99.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17760
components:
- type: Transform
@@ -120588,7 +122824,7 @@ entities:
pos: -116.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17761
components:
- type: Transform
@@ -120596,7 +122832,7 @@ entities:
pos: -62.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17762
components:
- type: Transform
@@ -120604,7 +122840,7 @@ entities:
pos: -63.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17763
components:
- type: Transform
@@ -120612,7 +122848,7 @@ entities:
pos: -92.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17764
components:
- type: Transform
@@ -120620,7 +122856,7 @@ entities:
pos: -99.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17765
components:
- type: Transform
@@ -120628,7 +122864,7 @@ entities:
pos: -115.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17766
components:
- type: Transform
@@ -120636,7 +122872,7 @@ entities:
pos: -24.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17767
components:
- type: Transform
@@ -120644,7 +122880,7 @@ entities:
pos: -109.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17768
components:
- type: Transform
@@ -120655,7 +122891,7 @@ entities:
deviceLists:
- 36
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17769
components:
- type: Transform
@@ -120666,7 +122902,7 @@ entities:
- 81
- 12660
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17770
components:
- type: Transform
@@ -120676,7 +122912,7 @@ entities:
deviceLists:
- 49
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17771
components:
- type: Transform
@@ -120684,14 +122920,14 @@ entities:
pos: -154.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17772
components:
- type: Transform
pos: -137.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17773
components:
- type: Transform
@@ -120702,7 +122938,7 @@ entities:
deviceLists:
- 100
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17774
components:
- type: Transform
@@ -120713,7 +122949,7 @@ entities:
deviceLists:
- 88
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17775
components:
- type: Transform
@@ -120724,7 +122960,7 @@ entities:
deviceLists:
- 86
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17776
components:
- type: Transform
@@ -120734,7 +122970,7 @@ entities:
deviceLists:
- 86
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17777
components:
- type: Transform
@@ -120745,7 +122981,7 @@ entities:
deviceLists:
- 114
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17778
components:
- type: Transform
@@ -120756,14 +122992,14 @@ entities:
deviceLists:
- 114
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17779
components:
- type: Transform
pos: -94.5,38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17780
components:
- type: Transform
@@ -120774,7 +123010,7 @@ entities:
deviceLists:
- 26
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17781
components:
- type: Transform
@@ -120785,7 +123021,7 @@ entities:
deviceLists:
- 50
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17782
components:
- type: Transform
@@ -120796,14 +123032,14 @@ entities:
deviceLists:
- 92
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17783
components:
- type: Transform
pos: -115.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17784
components:
- type: Transform
@@ -120814,7 +123050,7 @@ entities:
deviceLists:
- 98
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17785
components:
- type: Transform
@@ -120825,7 +123061,7 @@ entities:
deviceLists:
- 94
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17786
components:
- type: Transform
@@ -120835,7 +123071,7 @@ entities:
deviceLists:
- 61
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17787
components:
- type: Transform
@@ -120845,7 +123081,7 @@ entities:
deviceLists:
- 113
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17788
components:
- type: Transform
@@ -120853,7 +123089,7 @@ entities:
pos: -104.5,-62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17789
components:
- type: Transform
@@ -120863,7 +123099,7 @@ entities:
deviceLists:
- 113
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17790
components:
- type: Transform
@@ -120874,7 +123110,7 @@ entities:
deviceLists:
- 95
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17791
components:
- type: Transform
@@ -120885,7 +123121,7 @@ entities:
deviceLists:
- 93
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17792
components:
- type: Transform
@@ -120893,14 +123129,14 @@ entities:
pos: -82.5,-80.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17793
components:
- type: Transform
pos: -82.5,-75.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17794
components:
- type: Transform
@@ -120908,7 +123144,7 @@ entities:
pos: -11.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17795
components:
- type: Transform
@@ -120919,7 +123155,7 @@ entities:
deviceLists:
- 54
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17796
components:
- type: Transform
@@ -120930,7 +123166,7 @@ entities:
deviceLists:
- 36
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17797
components:
- type: Transform
@@ -120941,7 +123177,7 @@ entities:
deviceLists:
- 12
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17798
components:
- type: Transform
@@ -120952,7 +123188,7 @@ entities:
deviceLists:
- 14
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17799
components:
- type: Transform
@@ -120963,7 +123199,7 @@ entities:
deviceLists:
- 51
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17800
components:
- type: Transform
@@ -120975,7 +123211,7 @@ entities:
- 101
- 12662
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17801
components:
- type: Transform
@@ -120983,7 +123219,7 @@ entities:
pos: -17.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17802
components:
- type: Transform
@@ -120994,7 +123230,7 @@ entities:
deviceLists:
- 16
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17803
components:
- type: Transform
@@ -121005,7 +123241,7 @@ entities:
deviceLists:
- 99
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17804
components:
- type: Transform
@@ -121016,7 +123252,7 @@ entities:
deviceLists:
- 99
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17805
components:
- type: Transform
@@ -121027,7 +123263,7 @@ entities:
deviceLists:
- 38
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17806
components:
- type: Transform
@@ -121038,7 +123274,7 @@ entities:
deviceLists:
- 106
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17807
components:
- type: Transform
@@ -121049,7 +123285,7 @@ entities:
- 89
- 12661
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17808
components:
- type: Transform
@@ -121060,7 +123296,7 @@ entities:
- 89
- 12661
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17809
components:
- type: Transform
@@ -121071,7 +123307,7 @@ entities:
deviceLists:
- 16
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17810
components:
- type: Transform
@@ -121081,7 +123317,7 @@ entities:
deviceLists:
- 16
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17811
components:
- type: Transform
@@ -121165,7 +123401,7 @@ entities:
deviceLists:
- 104
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17819
components:
- type: Transform
@@ -121175,7 +123411,7 @@ entities:
deviceLists:
- 17
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17820
components:
- type: Transform
@@ -121186,7 +123422,7 @@ entities:
deviceLists:
- 17
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17821
components:
- type: Transform
@@ -121194,7 +123430,7 @@ entities:
pos: -72.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17822
components:
- type: Transform
@@ -121202,7 +123438,7 @@ entities:
pos: -71.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0000FFFF'
- uid: 17823
components:
- type: Transform
@@ -121210,25 +123446,78 @@ entities:
pos: -115.5,-30.5
parent: 2
- type: DeviceNetwork
- configurators:
- - invalid
deviceLists:
- 116
- type: AtmosPipeColor
- color: '#0055CCFF'
-- proto: GasVentScrubber
- entities:
- - uid: 17824
+ color: '#0000FFFF'
+ - uid: 27333
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-60.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 117
+ - 27435
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0000FFFF'
+ - uid: 27337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-60.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27320
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-65.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-69.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-69.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27321
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 27402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-73.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27319
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+- proto: GasVentScrubber
+ entities:
- uid: 17825
components:
- type: Transform
@@ -121236,19 +123525,17 @@ entities:
pos: -110.5,-32.5
parent: 2
- type: DeviceNetwork
- configurators:
- - invalid
deviceLists:
- 116
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17826
components:
- type: Transform
pos: -53.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17827
components:
- type: Transform
@@ -121258,7 +123545,7 @@ entities:
deviceLists:
- 29
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17828
components:
- type: Transform
@@ -121269,14 +123556,14 @@ entities:
deviceLists:
- 48
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17829
components:
- type: Transform
pos: -51.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17830
components:
- type: Transform
@@ -121297,7 +123584,7 @@ entities:
deviceLists:
- 16
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17832
components:
- type: Transform
@@ -121381,7 +123668,7 @@ entities:
deviceLists:
- 36
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17843
components:
- type: Transform
@@ -121392,7 +123679,7 @@ entities:
deviceLists:
- 26
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17844
components:
- type: Transform
@@ -121403,7 +123690,7 @@ entities:
deviceLists:
- 30
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17845
components:
- type: Transform
@@ -121420,14 +123707,14 @@ entities:
deviceLists:
- 106
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17847
components:
- type: Transform
pos: -65.5,-63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17848
components:
- type: Transform
@@ -121444,7 +123731,7 @@ entities:
- 89
- 12661
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17850
components:
- type: Transform
@@ -121452,7 +123739,7 @@ entities:
pos: -60.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17851
components:
- type: Transform
@@ -121460,7 +123747,7 @@ entities:
pos: -73.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17852
components:
- type: Transform
@@ -121468,7 +123755,7 @@ entities:
pos: -68.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17853
components:
- type: Transform
@@ -121476,7 +123763,7 @@ entities:
pos: -54.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17854
components:
- type: Transform
@@ -121487,7 +123774,7 @@ entities:
deviceLists:
- 43
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17855
components:
- type: Transform
@@ -121497,7 +123784,7 @@ entities:
deviceLists:
- 44
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17856
components:
- type: Transform
@@ -121508,7 +123795,7 @@ entities:
deviceLists:
- 44
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17857
components:
- type: Transform
@@ -121519,7 +123806,7 @@ entities:
deviceLists:
- 49
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17858
components:
- type: Transform
@@ -121529,7 +123816,7 @@ entities:
deviceLists:
- 19
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17859
components:
- type: Transform
@@ -121540,7 +123827,7 @@ entities:
deviceLists:
- 18
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17860
components:
- type: Transform
@@ -121550,7 +123837,7 @@ entities:
deviceLists:
- 18
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17861
components:
- type: Transform
@@ -121561,7 +123848,7 @@ entities:
deviceLists:
- 62
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17862
components:
- type: Transform
@@ -121572,7 +123859,7 @@ entities:
deviceLists:
- 17
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17863
components:
- type: Transform
@@ -121583,7 +123870,7 @@ entities:
deviceLists:
- 17
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17864
components:
- type: Transform
@@ -121596,7 +123883,7 @@ entities:
- 12679
- 17
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17865
components:
- type: Transform
@@ -121608,7 +123895,7 @@ entities:
- 89
- 12661
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17866
components:
- type: Transform
@@ -121619,7 +123906,7 @@ entities:
deviceLists:
- 17
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17867
components:
- type: Transform
@@ -121630,7 +123917,7 @@ entities:
deviceLists:
- 36
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17868
components:
- type: Transform
@@ -121641,7 +123928,7 @@ entities:
deviceLists:
- 46
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17869
components:
- type: Transform
@@ -121652,7 +123939,7 @@ entities:
deviceLists:
- 46
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17870
components:
- type: Transform
@@ -121663,7 +123950,7 @@ entities:
- 48
- 115
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17871
components:
- type: Transform
@@ -121674,14 +123961,14 @@ entities:
deviceLists:
- 65
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17872
components:
- type: Transform
pos: -25.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17873
components:
- type: Transform
@@ -121692,7 +123979,7 @@ entities:
deviceLists:
- 48
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17874
components:
- type: Transform
@@ -121703,7 +123990,7 @@ entities:
deviceLists:
- 48
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17875
components:
- type: Transform
@@ -121714,7 +124001,7 @@ entities:
deviceLists:
- 35
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17876
components:
- type: Transform
@@ -121725,7 +124012,7 @@ entities:
deviceLists:
- 35
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17877
components:
- type: Transform
@@ -121736,7 +124023,7 @@ entities:
deviceLists:
- 112
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17878
components:
- type: Transform
@@ -121747,7 +124034,7 @@ entities:
deviceLists:
- 105
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17879
components:
- type: Transform
@@ -121758,7 +124045,7 @@ entities:
deviceLists:
- 53
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17880
components:
- type: Transform
@@ -121769,7 +124056,7 @@ entities:
deviceLists:
- 54
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17881
components:
- type: Transform
@@ -121780,14 +124067,14 @@ entities:
deviceLists:
- 54
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17882
components:
- type: Transform
pos: -18.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17883
components:
- type: Transform
@@ -121798,7 +124085,7 @@ entities:
deviceLists:
- 31
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17884
components:
- type: Transform
@@ -121808,7 +124095,7 @@ entities:
deviceLists:
- 21
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17885
components:
- type: Transform
@@ -121818,7 +124105,7 @@ entities:
deviceLists:
- 34
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17886
components:
- type: Transform
@@ -121859,7 +124146,7 @@ entities:
pos: -7.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17890
components:
- type: Transform
@@ -121870,7 +124157,7 @@ entities:
deviceLists:
- 115
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17891
components:
- type: Transform
@@ -121881,7 +124168,7 @@ entities:
deviceLists:
- 48
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17892
components:
- type: Transform
@@ -121892,7 +124179,7 @@ entities:
deviceLists:
- 31
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17893
components:
- type: Transform
@@ -121900,7 +124187,7 @@ entities:
pos: -29.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17894
components:
- type: Transform
@@ -121910,14 +124197,14 @@ entities:
deviceLists:
- 31
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17895
components:
- type: Transform
pos: -82.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17896
components:
- type: Transform
@@ -121927,7 +124214,7 @@ entities:
deviceLists:
- 71
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17897
components:
- type: Transform
@@ -121937,7 +124224,7 @@ entities:
deviceLists:
- 71
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17898
components:
- type: Transform
@@ -121945,7 +124232,7 @@ entities:
pos: -80.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17899
components:
- type: Transform
@@ -121956,7 +124243,7 @@ entities:
deviceLists:
- 58
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17900
components:
- type: Transform
@@ -121972,7 +124259,7 @@ entities:
deviceLists:
- 97
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17902
components:
- type: Transform
@@ -121982,7 +124269,7 @@ entities:
deviceLists:
- 50
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17903
components:
- type: Transform
@@ -121993,7 +124280,7 @@ entities:
deviceLists:
- 40
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17904
components:
- type: Transform
@@ -122001,7 +124288,7 @@ entities:
pos: -122.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17905
components:
- type: Transform
@@ -122009,7 +124296,7 @@ entities:
pos: -130.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17906
components:
- type: Transform
@@ -122027,7 +124314,7 @@ entities:
pos: -103.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17908
components:
- type: Transform
@@ -122038,7 +124325,7 @@ entities:
deviceLists:
- 55
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17909
components:
- type: Transform
@@ -122046,7 +124333,7 @@ entities:
pos: -93.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17910
components:
- type: Transform
@@ -122057,21 +124344,21 @@ entities:
deviceLists:
- 16
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17911
components:
- type: Transform
pos: -60.5,-54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17912
components:
- type: Transform
pos: -66.5,-56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17913
components:
- type: Transform
@@ -122081,7 +124368,7 @@ entities:
deviceLists:
- 53
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17914
components:
- type: Transform
@@ -122092,7 +124379,7 @@ entities:
deviceLists:
- 59
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17915
components:
- type: Transform
@@ -122103,7 +124390,7 @@ entities:
deviceLists:
- 59
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17916
components:
- type: Transform
@@ -122114,7 +124401,7 @@ entities:
deviceLists:
- 59
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17917
components:
- type: Transform
@@ -122126,7 +124413,7 @@ entities:
- 101
- 12662
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17918
components:
- type: Transform
@@ -122153,7 +124440,7 @@ entities:
pos: -25.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17921
components:
- type: Transform
@@ -122173,7 +124460,7 @@ entities:
deviceLists:
- 13
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17923
components:
- type: Transform
@@ -122183,7 +124470,7 @@ entities:
deviceLists:
- 96
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17924
components:
- type: Transform
@@ -122205,7 +124492,7 @@ entities:
deviceLists:
- 71
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17926
components:
- type: Transform
@@ -122216,7 +124503,7 @@ entities:
deviceLists:
- 37
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17927
components:
- type: Transform
@@ -122226,7 +124513,7 @@ entities:
deviceLists:
- 47
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17928
components:
- type: Transform
@@ -122237,7 +124524,7 @@ entities:
deviceLists:
- 75
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17929
components:
- type: Transform
@@ -122248,7 +124535,7 @@ entities:
deviceLists:
- 37
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17930
components:
- type: Transform
@@ -122256,7 +124543,7 @@ entities:
pos: -58.5,-59.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17931
components:
- type: Transform
@@ -122267,7 +124554,7 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17932
components:
- type: Transform
@@ -122278,7 +124565,7 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17933
components:
- type: Transform
@@ -122288,7 +124575,7 @@ entities:
deviceLists:
- 68
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17934
components:
- type: Transform
@@ -122299,7 +124586,7 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17935
components:
- type: Transform
@@ -122310,7 +124597,7 @@ entities:
deviceLists:
- 69
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17936
components:
- type: Transform
@@ -122318,7 +124605,7 @@ entities:
pos: -86.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17937
components:
- type: Transform
@@ -122329,7 +124616,7 @@ entities:
deviceLists:
- 66
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17938
components:
- type: Transform
@@ -122340,7 +124627,7 @@ entities:
deviceLists:
- 76
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17939
components:
- type: Transform
@@ -122351,7 +124638,7 @@ entities:
deviceLists:
- 66
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17940
components:
- type: Transform
@@ -122362,7 +124649,7 @@ entities:
deviceLists:
- 67
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17941
components:
- type: Transform
@@ -122373,7 +124660,7 @@ entities:
deviceLists:
- 67
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17942
components:
- type: Transform
@@ -122383,7 +124670,7 @@ entities:
deviceLists:
- 77
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17943
components:
- type: Transform
@@ -122394,7 +124681,7 @@ entities:
deviceLists:
- 74
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17944
components:
- type: Transform
@@ -122402,7 +124689,7 @@ entities:
pos: -48.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17945
components:
- type: Transform
@@ -122413,7 +124700,7 @@ entities:
deviceLists:
- 17
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17946
components:
- type: Transform
@@ -122424,7 +124711,7 @@ entities:
deviceLists:
- 68
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17947
components:
- type: Transform
@@ -122435,14 +124722,14 @@ entities:
deviceLists:
- 49
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17948
components:
- type: Transform
pos: -47.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17949
components:
- type: Transform
@@ -122453,7 +124740,7 @@ entities:
deviceLists:
- 38
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17950
components:
- type: Transform
@@ -122464,14 +124751,14 @@ entities:
deviceLists:
- 13
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17951
components:
- type: Transform
pos: -87.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17952
components:
- type: Transform
@@ -122491,7 +124778,7 @@ entities:
deviceLists:
- 78
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17954
components:
- type: Transform
@@ -122502,7 +124789,7 @@ entities:
deviceLists:
- 78
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17955
components:
- type: Transform
@@ -122510,7 +124797,7 @@ entities:
pos: -115.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17956
components:
- type: Transform
@@ -122521,21 +124808,21 @@ entities:
deviceLists:
- 81
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17957
components:
- type: Transform
pos: -80.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17958
components:
- type: Transform
pos: -123.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17959
components:
- type: Transform
@@ -122554,7 +124841,7 @@ entities:
pos: -96.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17961
components:
- type: Transform
@@ -122565,7 +124852,7 @@ entities:
deviceLists:
- 90
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17962
components:
- type: Transform
@@ -122573,21 +124860,21 @@ entities:
pos: -60.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17963
components:
- type: Transform
pos: -60.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17964
components:
- type: Transform
pos: -33.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17965
components:
- type: Transform
@@ -122595,7 +124882,7 @@ entities:
pos: -86.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17966
components:
- type: Transform
@@ -122606,7 +124893,7 @@ entities:
deviceLists:
- 114
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17967
components:
- type: Transform
@@ -122624,7 +124911,7 @@ entities:
deviceLists:
- 88
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17969
components:
- type: Transform
@@ -122635,7 +124922,7 @@ entities:
deviceLists:
- 86
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17970
components:
- type: Transform
@@ -122645,7 +124932,7 @@ entities:
deviceLists:
- 86
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17971
components:
- type: Transform
@@ -122653,7 +124940,7 @@ entities:
pos: -99.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17972
components:
- type: Transform
@@ -122735,7 +125022,7 @@ entities:
deviceLists:
- 91
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17980
components:
- type: Transform
@@ -122776,7 +125063,7 @@ entities:
deviceLists:
- 51
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17984
components:
- type: Transform
@@ -122787,7 +125074,7 @@ entities:
deviceLists:
- 62
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17985
components:
- type: Transform
@@ -122798,7 +125085,7 @@ entities:
deviceLists:
- 12
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17986
components:
- type: Transform
@@ -122809,7 +125096,7 @@ entities:
- 101
- 12662
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17987
components:
- type: Transform
@@ -122820,7 +125107,7 @@ entities:
- 101
- 12662
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17988
components:
- type: Transform
@@ -122830,7 +125117,7 @@ entities:
deviceLists:
- 96
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17989
components:
- type: Transform
@@ -122840,7 +125127,7 @@ entities:
deviceLists:
- 50
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17990
components:
- type: Transform
@@ -122851,7 +125138,7 @@ entities:
deviceLists:
- 14
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17991
components:
- type: Transform
@@ -122862,7 +125149,7 @@ entities:
deviceLists:
- 103
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17992
components:
- type: Transform
@@ -122873,7 +125160,7 @@ entities:
deviceLists:
- 36
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17993
components:
- type: Transform
@@ -122884,7 +125171,7 @@ entities:
deviceLists:
- 21
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17994
components:
- type: Transform
@@ -122892,7 +125179,7 @@ entities:
pos: -19.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17995
components:
- type: Transform
@@ -122902,7 +125189,7 @@ entities:
deviceLists:
- 114
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17996
components:
- type: Transform
@@ -122913,7 +125200,7 @@ entities:
deviceLists:
- 16
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17997
components:
- type: Transform
@@ -122924,7 +125211,7 @@ entities:
deviceLists:
- 36
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17998
components:
- type: Transform
@@ -122935,7 +125222,7 @@ entities:
deviceLists:
- 99
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 17999
components:
- type: Transform
@@ -122945,7 +125232,7 @@ entities:
deviceLists:
- 99
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 18000
components:
- type: Transform
@@ -122956,7 +125243,7 @@ entities:
deviceLists:
- 106
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 18001
components:
- type: Transform
@@ -122968,7 +125255,7 @@ entities:
- 89
- 12661
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 18002
components:
- type: Transform
@@ -123045,7 +125332,7 @@ entities:
deviceLists:
- 104
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 18009
components:
- type: Transform
@@ -123055,7 +125342,7 @@ entities:
deviceLists:
- 39
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 18010
components:
- type: Transform
@@ -123063,7 +125350,7 @@ entities:
pos: -51.5,-53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 18011
components:
- type: Transform
@@ -123071,7 +125358,7 @@ entities:
pos: -41.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
- uid: 18012
components:
- type: Transform
@@ -123079,12 +125366,76 @@ entities:
pos: -115.5,-32.5
parent: 2
- type: DeviceNetwork
- configurators:
- - invalid
deviceLists:
- 116
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF0000FF'
+ - uid: 27338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-59.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27320
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-59.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27435
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27340
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -89.5,-65.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-68.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27318
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-69.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27321
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-72.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 27319
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- proto: GasVolumePump
entities:
- uid: 18013
@@ -123321,6 +125672,137 @@ entities:
parent: 2
- proto: Grille
entities:
+ - uid: 117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-76.5
+ parent: 2
+ - uid: 201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-77.5
+ parent: 2
+ - uid: 629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,-75.5
+ parent: 2
+ - uid: 744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-76.5
+ parent: 2
+ - uid: 773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-72.5
+ parent: 2
+ - uid: 1519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-75.5
+ parent: 2
+ - uid: 1541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-62.5
+ parent: 2
+ - uid: 1551
+ components:
+ - type: Transform
+ pos: -88.5,-78.5
+ parent: 2
+ - uid: 1564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,-75.5
+ parent: 2
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: -87.5,-78.5
+ parent: 2
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: -86.5,-78.5
+ parent: 2
+ - uid: 1576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-62.5
+ parent: 2
+ - uid: 1580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-66.5
+ parent: 2
+ - uid: 1608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-62.5
+ parent: 2
+ - uid: 2041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-66.5
+ parent: 2
+ - uid: 2047
+ components:
+ - type: Transform
+ pos: -96.5,-72.5
+ parent: 2
+ - uid: 2574
+ components:
+ - type: Transform
+ pos: -95.5,-71.5
+ parent: 2
+ - uid: 5354
+ components:
+ - type: Transform
+ pos: -95.5,-70.5
+ parent: 2
+ - uid: 5362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-77.5
+ parent: 2
+ - uid: 8504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,-75.5
+ parent: 2
+ - uid: 8752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-77.5
+ parent: 2
+ - uid: 10636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-75.5
+ parent: 2
+ - uid: 13724
+ components:
+ - type: Transform
+ pos: -95.5,-72.5
+ parent: 2
- uid: 18040
components:
- type: Transform
@@ -126055,12 +128537,6 @@ entities:
- type: Transform
pos: -97.5,-28.5
parent: 2
- - uid: 18578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-58.5
- parent: 2
- uid: 18579
components:
- type: Transform
@@ -127220,11 +129696,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -126.5,-59.5
parent: 2
- - uid: 18795
- components:
- - type: Transform
- pos: -89.5,-74.5
- parent: 2
- uid: 18796
components:
- type: Transform
@@ -127710,11 +130181,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -119.5,37.5
parent: 2
- - uid: 18886
- components:
- - type: Transform
- pos: -91.5,-72.5
- parent: 2
- uid: 18887
components:
- type: Transform
@@ -127760,11 +130226,6 @@ entities:
- type: Transform
pos: -119.5,-31.5
parent: 2
- - uid: 18895
- components:
- - type: Transform
- pos: -89.5,-70.5
- parent: 2
- uid: 18896
components:
- type: Transform
@@ -127794,7 +130255,8 @@ entities:
- uid: 18901
components:
- type: Transform
- pos: -87.5,-72.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,-79.5
parent: 2
- uid: 18902
components:
@@ -129263,12 +131725,6 @@ entities:
- type: Transform
pos: -137.5,31.5
parent: 2
- - uid: 19163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-58.5
- parent: 2
- uid: 19164
components:
- type: Transform
@@ -129324,6 +131780,216 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,-31.5
parent: 2
+ - uid: 19356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-75.5
+ parent: 2
+ - uid: 19705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-76.5
+ parent: 2
+ - uid: 20069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-77.5
+ parent: 2
+ - uid: 20088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-75.5
+ parent: 2
+ - uid: 20122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,-79.5
+ parent: 2
+ - uid: 20884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-58.5
+ parent: 2
+ - uid: 20945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-58.5
+ parent: 2
+ - uid: 20946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-58.5
+ parent: 2
+ - uid: 20985
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-59.5
+ parent: 2
+ - uid: 22429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-81.5
+ parent: 2
+ - uid: 23191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-81.5
+ parent: 2
+ - uid: 23633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,-79.5
+ parent: 2
+ - uid: 25515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-77.5
+ parent: 2
+ - uid: 25517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,-78.5
+ parent: 2
+ - uid: 25522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-73.5
+ parent: 2
+ - uid: 26171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-81.5
+ parent: 2
+ - uid: 26172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-66.5
+ parent: 2
+ - uid: 26174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-80.5
+ parent: 2
+ - uid: 27310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-81.5
+ parent: 2
+ - uid: 27441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-79.5
+ parent: 2
+ - uid: 27444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-81.5
+ parent: 2
+ - uid: 27448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-81.5
+ parent: 2
+ - uid: 27457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,-75.5
+ parent: 2
+ - uid: 27458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,-75.5
+ parent: 2
+ - uid: 27459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,-78.5
+ parent: 2
+ - uid: 27460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,-77.5
+ parent: 2
+ - uid: 27461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-77.5
+ parent: 2
+ - uid: 27462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-77.5
+ parent: 2
+ - uid: 27463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,-77.5
+ parent: 2
+ - uid: 27484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-79.5
+ parent: 2
+ - uid: 27487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-78.5
+ parent: 2
+ - uid: 27555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -89.5,-81.5
+ parent: 2
+ - uid: 27561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-78.5
+ parent: 2
+ - uid: 27563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-79.5
+ parent: 2
+ - uid: 27564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,-77.5
+ parent: 2
- proto: GrilleBroken
entities:
- uid: 19174
@@ -129778,6 +132444,107 @@ entities:
rot: 1.5707963267948966 rad
pos: -132.5,-63.5
parent: 2
+- proto: GrilleSpawner
+ entities:
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: -86.5,-82.5
+ parent: 2
+ - uid: 2021
+ components:
+ - type: Transform
+ pos: -89.5,-82.5
+ parent: 2
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: -88.5,-82.5
+ parent: 2
+ - uid: 8434
+ components:
+ - type: Transform
+ pos: -98.5,-80.5
+ parent: 2
+ - uid: 8753
+ components:
+ - type: Transform
+ pos: -102.5,-79.5
+ parent: 2
+ - uid: 19519
+ components:
+ - type: Transform
+ pos: -92.5,-81.5
+ parent: 2
+ - uid: 23502
+ components:
+ - type: Transform
+ pos: -103.5,-76.5
+ parent: 2
+ - uid: 25520
+ components:
+ - type: Transform
+ pos: -99.5,-80.5
+ parent: 2
+ - uid: 27442
+ components:
+ - type: Transform
+ pos: -87.5,-82.5
+ parent: 2
+ - uid: 27445
+ components:
+ - type: Transform
+ pos: -85.5,-82.5
+ parent: 2
+ - uid: 27446
+ components:
+ - type: Transform
+ pos: -100.5,-77.5
+ parent: 2
+ - uid: 27496
+ components:
+ - type: Transform
+ pos: -93.5,-81.5
+ parent: 2
+- proto: GunSafeBaseSecure
+ entities:
+ - uid: 20950
+ components:
+ - type: Transform
+ pos: -80.5,-31.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 21511
+ - 21518
+ - 21547
+ - 22419
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: GunSafeCombineSmallArms
entities:
- uid: 19261
@@ -129842,6 +132609,13 @@ entities:
- type: Transform
pos: -83.29778,-18.494616
parent: 2
+- proto: GunSafeSubMachineGunSkorpion
+ entities:
+ - uid: 19869
+ components:
+ - type: Transform
+ pos: -84.5,-22.5
+ parent: 2
- proto: GyroscopeMachineCircuitboard
entities:
- uid: 19268
@@ -129958,12 +132732,6 @@ entities:
- type: Transform
pos: -54.422913,-30.442062
parent: 2
- - uid: 19288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.28924,-61.39848
- parent: 2
- proto: HarmonicaInstrument
entities:
- uid: 19289
@@ -130093,6 +132861,12 @@ entities:
parent: 2
- proto: HighSecArmoryLocked
entities:
+ - uid: 814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -79.5,-26.5
+ parent: 2
- uid: 19309
components:
- type: Transform
@@ -130186,6 +132960,13 @@ entities:
- type: Transform
pos: -100.5,15.5
parent: 2
+- proto: HolopadCargoMailroom
+ entities:
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: -98.5,-59.5
+ parent: 2
- proto: HolopadCommandBridgeLongRange
entities:
- uid: 19324
@@ -130410,13 +133191,6 @@ entities:
- type: Transform
pos: -47.5,-45.5
parent: 2
-- proto: HolopadServiceNewsroom
- entities:
- - uid: 19356
- components:
- - type: Transform
- pos: -95.5,-64.5
- parent: 2
- proto: HolopadServiceZookeeper
entities:
- uid: 19357
@@ -131268,11 +134042,6 @@ entities:
- type: Transform
pos: -46.448536,-4.0864625
parent: 2
- - uid: 19491
- components:
- - type: Transform
- pos: -78.498375,-29.35603
- parent: 2
- uid: 19492
components:
- type: Transform
@@ -131370,7 +134139,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2333:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Plasma Storage Vent
- type: NameModifier
@@ -131385,7 +134155,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2334:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Burn Chamber Vent
- type: NameModifier
@@ -131398,11 +134169,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21716:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21717:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21718:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 19504
components:
- type: Transform
@@ -131412,11 +134186,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21713:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21715:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21714:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: LockableButtonCommand
entities:
- uid: 19505
@@ -131428,7 +134205,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2345:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: LockableButtonEngineering
entities:
- uid: 19506
@@ -131442,11 +134220,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2339:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2338:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2340:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Экстренная вентиляция
- type: NameModifier
@@ -131461,11 +134242,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2339:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2338:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2340:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: EMERGENCY VENT
- type: NameModifier
@@ -131496,9 +134280,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
461:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
463:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Front Door
- type: NameModifier
@@ -131511,9 +134297,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
461:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
463:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 19512
components:
- type: Transform
@@ -131523,11 +134311,46 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2380:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2381:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2379:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
+- proto: LockableButtonQuartermaster
+ entities:
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: -87.5,-75.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 27409:
+ - - Pressed
+ - Toggle
+ 27410:
+ - - Pressed
+ - Toggle
+ 27411:
+ - - Pressed
+ - Toggle
+ - uid: 1587
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-72.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 27502:
+ - - Pressed
+ - Toggle
+ 27501:
+ - - Pressed
+ - Toggle
- proto: LockableButtonSecurity
entities:
- uid: 19513
@@ -131538,13 +134361,17 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2360:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2362:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2361:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
20657:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 19514
components:
- type: Transform
@@ -131554,13 +134381,17 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2360:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2362:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2361:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
20657:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: LockerAtmosphericsFilled
entities:
- uid: 19515
@@ -131585,10 +134416,76 @@ entities:
parent: 2
- proto: LockerBlueShieldEnsignFilled
entities:
- - uid: 19519
+ - uid: 10235
components:
- type: Transform
- pos: -77.5,6.5
+ pos: -86.5,-77.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 10241
+ - 10507
+ - 10533
+ - 10574
+ - 10634
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: LockerBlueShieldOfficerFilled
+ entities:
+ - uid: 27464
+ components:
+ - type: Transform
+ pos: -96.5,-69.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27465
+ - 27466
+ - 27467
+ - 27468
+ - 27469
+ - 27470
+ - 27472
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 27475
+ components:
+ - type: Transform
+ pos: -96.5,-71.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27476
+ - 27477
+ - 27478
+ - 27480
+ - 27481
+ - 27482
+ - 27483
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 27490
+ components:
+ - type: Transform
+ pos: -90.5,-65.5
parent: 2
- type: EntityStorage
air:
@@ -131608,6 +134505,20 @@ entities:
- 0
- 0
- 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27491
+ - 27492
+ - 27493
+ - 27494
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: LockerBoozeFilled
entities:
- uid: 19520
@@ -131760,21 +134671,6 @@ entities:
- type: Transform
pos: -93.5,-37.5
parent: 2
- - uid: 19546
- components:
- - type: Transform
- pos: -96.5,-32.5
- parent: 2
- - uid: 19547
- components:
- - type: Transform
- pos: -96.5,-24.5
- parent: 2
- - uid: 19548
- components:
- - type: Transform
- pos: -96.5,-28.5
- parent: 2
- uid: 19549
components:
- type: Transform
@@ -131876,10 +134772,10 @@ entities:
parent: 2
- proto: LockerHeadOfSecurityFilled
entities:
- - uid: 19560
+ - uid: 8565
components:
- type: Transform
- pos: -76.5,-32.5
+ pos: -77.5,-31.5
parent: 2
- proto: LockerMedicalFilled
entities:
@@ -131952,6 +134848,27 @@ entities:
- type: Transform
pos: -37.5,4.5
parent: 2
+- proto: LockerPrisoner
+ entities:
+ - uid: 25529
+ components:
+ - type: Transform
+ pos: -96.5,-24.5
+ parent: 2
+- proto: LockerPrisoner2
+ entities:
+ - uid: 25750
+ components:
+ - type: Transform
+ pos: -96.5,-28.5
+ parent: 2
+- proto: LockerPrisoner3
+ entities:
+ - uid: 25523
+ components:
+ - type: Transform
+ pos: -96.5,-32.5
+ parent: 2
- proto: LockerQuarterMasterFilled
entities:
- uid: 19573
@@ -131963,6 +134880,8 @@ entities:
entities:
- uid: 2444
components:
+ - type: MetaData
+ name: шкаф Представителя Корпарации
- type: Transform
pos: -72.5,2.5
parent: 2
@@ -132173,9 +135092,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
271:
- - Output: DoorBolt
+ - - Output
+ - DoorBolt
270:
- - Output: DoorBolt
+ - - Output
+ - DoorBolt
- proto: LogicGateXor
entities:
- uid: 19598
@@ -132189,7 +135110,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
256:
- - Output: DoorBolt
+ - - Output
+ - DoorBolt
- type: Physics
canCollide: False
bodyType: Static
@@ -132253,6 +135175,11 @@ entities:
- type: Transform
pos: -90.5,8.5
parent: 2
+ - uid: 27488
+ components:
+ - type: Transform
+ pos: -95.5,-73.5
+ parent: 2
- proto: LootSpawnerRoboticsBorgModule
entities:
- uid: 19609
@@ -132374,11 +135301,6 @@ entities:
- type: Transform
pos: -111.5,-16.5
parent: 2
- - uid: 19628
- components:
- - type: Transform
- pos: -118.5,-37.5
- parent: 2
- uid: 19629
components:
- type: Transform
@@ -132396,39 +135318,52 @@ entities:
- type: Transform
pos: -110.5,36.5
parent: 2
+- proto: MachineMaterialSilo
+ entities:
+ - uid: 27313
+ components:
+ - type: Transform
+ pos: -118.5,-37.5
+ parent: 2
- proto: MagazineBoxMagnum
entities:
- - uid: 19632
- components:
- - type: Transform
- pos: -78.73954,-29.818624
- parent: 2
- - uid: 19633
- components:
- - type: Transform
- pos: -78.71176,-30.256123
- parent: 2
- - uid: 19634
- components:
- - type: Transform
- pos: -78.288155,-29.93668
- parent: 2
- uid: 19635
components:
- type: Transform
pos: -92.84204,-19.502308
parent: 2
-- proto: MagazineMagnum
+ - uid: 21511
+ components:
+ - type: Transform
+ parent: 20950
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 21518
+ components:
+ - type: Transform
+ parent: 20950
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 22419
+ components:
+ - type: Transform
+ parent: 20950
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: MailBag
entities:
- - uid: 19636
+ - uid: 1552
components:
- type: Transform
- pos: -80.166885,-31.523285
+ pos: -97.30801,-61.333576
parent: 2
- - uid: 19637
+ - uid: 1555
components:
- type: Transform
- pos: -80.45855,-31.492035
+ pos: -97.70104,-61.63976
parent: 2
- proto: MailingUnit
entities:
@@ -132586,21 +135521,21 @@ entities:
parent: 2
- proto: Mannequin
entities:
- - uid: 10427
+ - uid: 10196
components:
- type: Transform
- pos: -81.5,-31.5
+ pos: -78.5,-31.5
parent: 2
- type: ContainerContainer
containers:
jumpsuit: !type:ContainerSlot
showEnts: False
occludes: False
- ent: 10430
+ ent: 10427
outerClothing: !type:ContainerSlot
showEnts: False
occludes: False
- ent: null
+ ent: 10455
neck: !type:ContainerSlot
showEnts: False
occludes: False
@@ -132608,15 +135543,15 @@ entities:
mask: !type:ContainerSlot
showEnts: False
occludes: False
- ent: null
+ ent: 10454
eyes: !type:ContainerSlot
showEnts: False
occludes: False
- ent: 10428
+ ent: null
head: !type:ContainerSlot
showEnts: False
occludes: False
- ent: 10429
+ ent: 10453
suitstorage: !type:ContainerSlot
showEnts: False
occludes: False
@@ -132624,9 +135559,9 @@ entities:
back: !type:ContainerSlot
showEnts: False
occludes: False
- ent: null
- - type: ReplacementAccent
- accent: cowboy
+ ent: 10428
+ - type: DiseaseTempImmune
+ prob: 0.35
- uid: 10432
components:
- type: Transform
@@ -132653,7 +135588,7 @@ entities:
eyes: !type:ContainerSlot
showEnts: False
occludes: False
- ent: null
+ ent: 10452
head: !type:ContainerSlot
showEnts: False
occludes: False
@@ -132696,7 +135631,7 @@ entities:
eyes: !type:ContainerSlot
showEnts: False
occludes: False
- ent: null
+ ent: 10499
head: !type:ContainerSlot
showEnts: False
occludes: False
@@ -132713,47 +135648,6 @@ entities:
accent: cowboy
- type: DiseaseTempImmune
prob: 0.35
- - uid: 10452
- components:
- - type: Transform
- pos: -84.5,-31.5
- parent: 2
- - type: ContainerContainer
- containers:
- jumpsuit: !type:ContainerSlot
- showEnts: False
- occludes: False
- ent: null
- outerClothing: !type:ContainerSlot
- showEnts: False
- occludes: False
- ent: 10455
- neck: !type:ContainerSlot
- showEnts: False
- occludes: False
- ent: null
- mask: !type:ContainerSlot
- showEnts: False
- occludes: False
- ent: 10454
- eyes: !type:ContainerSlot
- showEnts: False
- occludes: False
- ent: null
- head: !type:ContainerSlot
- showEnts: False
- occludes: False
- ent: 10453
- suitstorage: !type:ContainerSlot
- showEnts: False
- occludes: False
- ent: null
- back: !type:ContainerSlot
- showEnts: False
- occludes: False
- ent: null
- - type: DiseaseTempImmune
- prob: 0.35
- uid: 10481
components:
- type: Transform
@@ -132941,15 +135835,10 @@ entities:
parent: 2
- proto: MedkitFilled
entities:
- - uid: 19685
+ - uid: 19560
components:
- type: Transform
- pos: -84.35179,-22.51016
- parent: 2
- - uid: 19686
- components:
- - type: Transform
- pos: -84.63304,-22.307035
+ pos: -80.6869,-20.22093
parent: 2
- uid: 19687
components:
@@ -133001,6 +135890,11 @@ entities:
- type: Transform
pos: -54.687107,7.6354876
parent: 2
+ - uid: 20347
+ components:
+ - type: Transform
+ pos: -80.6869,-20.56468
+ parent: 2
- proto: MedkitOxygenFilled
entities:
- uid: 19697
@@ -133013,6 +135907,18 @@ entities:
- type: Transform
pos: -23.67891,-46.573364
parent: 2
+- proto: MedkitRadiationFilled
+ entities:
+ - uid: 20645
+ components:
+ - type: Transform
+ pos: -76.65022,-28.637482
+ parent: 2
+ - uid: 27302
+ components:
+ - type: Transform
+ pos: -76.65022,-28.387482
+ parent: 2
- proto: MedkitToxinFilled
entities:
- uid: 19699
@@ -133025,6 +135931,16 @@ entities:
- type: Transform
pos: -21.507034,-46.542114
parent: 2
+ - uid: 22628
+ components:
+ - type: Transform
+ pos: -76.18147,-28.387482
+ parent: 2
+ - uid: 27303
+ components:
+ - type: Transform
+ pos: -76.18147,-28.653107
+ parent: 2
- proto: Memorial
entities:
- uid: 19701
@@ -133053,13 +135969,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -111.33856,-33.641518
parent: 2
-- proto: MicrophoneInstrument
- entities:
- - uid: 19705
- components:
- - type: Transform
- pos: -94.52467,-63.315044
- parent: 2
- proto: MiningDrill
entities:
- uid: 19706
@@ -133350,14 +136259,6 @@ entities:
- type: Transform
pos: -112.59836,-33.416798
parent: 2
-- proto: NewsReaderCartridge
- entities:
- - uid: 19752
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -95.699295,-61.31175
- parent: 2
- proto: NitrogenCanister
entities:
- uid: 19753
@@ -133667,6 +136568,14 @@ entities:
- type: Transform
pos: -37.5,-3.5
parent: 2
+- proto: PaintingSadClown
+ entities:
+ - uid: 10516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-71.5
+ parent: 2
- proto: PaladinCircuitBoard
entities:
- uid: 19807
@@ -133676,6 +136585,11 @@ entities:
parent: 2
- proto: Paper
entities:
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: -97.29238,-59.458576
+ parent: 2
- uid: 10731
components:
- type: Transform
@@ -134012,6 +136926,12 @@ entities:
- type: Transform
pos: -101.40108,-65.2001
parent: 2
+ - uid: 27498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.32323,-72.93898
+ parent: 2
- proto: PaperArtifactAnalyzer
entities:
- uid: 19826
@@ -134108,6 +137028,11 @@ entities:
- type: Transform
pos: -51.5,-7.5
parent: 2
+ - uid: 23622
+ components:
+ - type: Transform
+ pos: -96.5,-59.5
+ parent: 2
- proto: PaperBin5
entities:
- uid: 19843
@@ -134137,11 +137062,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -55.5,-78.5
parent: 2
- - uid: 19848
- components:
- - type: Transform
- pos: -78.5,-31.5
- parent: 2
- uid: 19849
components:
- type: Transform
@@ -134312,10 +137232,10 @@ entities:
count: 2
- proto: Pen
entities:
- - uid: 19869
+ - uid: 1529
components:
- type: Transform
- pos: -78.514,-31.340405
+ pos: -97.72988,-59.44295
parent: 2
- uid: 19870
components:
@@ -134415,11 +137335,39 @@ entities:
parent: 2
- proto: PhoneInstrument
entities:
+ - uid: 10241
+ components:
+ - type: Transform
+ parent: 10235
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 19888
components:
- type: Transform
pos: -71.99819,6.5234337
parent: 2
+ - uid: 27468
+ components:
+ - type: Transform
+ parent: 27464
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27476
+ components:
+ - type: Transform
+ parent: 27475
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27492
+ components:
+ - type: Transform
+ parent: 27490
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: PianoInstrument
entities:
- uid: 19889
@@ -134509,6 +137457,18 @@ entities:
parent: 2
- proto: PlasmaReinforcedWindowDirectional
entities:
+ - uid: 10429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -84.5,-31.5
+ parent: 2
+ - uid: 19686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-31.5
+ parent: 2
- uid: 19903
components:
- type: Transform
@@ -134526,11 +137486,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -27.5,-67.5
parent: 2
- - uid: 19906
- components:
- - type: Transform
- pos: -80.5,-31.5
- parent: 2
- uid: 19907
components:
- type: Transform
@@ -134583,12 +137538,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -123.5,-72.5
parent: 2
- - uid: 19916
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-31.5
- parent: 2
- uid: 19917
components:
- type: Transform
@@ -134790,6 +137739,11 @@ entities:
parent: 19951
- type: Physics
canCollide: False
+ - uid: 21952
+ components:
+ - type: Transform
+ pos: -59.486855,-9.481255
+ parent: 2
- proto: PlasmaTank
entities:
- uid: 19953
@@ -134825,7 +137779,18 @@ entities:
- type: DeviceLinkSource
linkedPorts:
26937:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
+ - uid: 19991
+ components:
+ - type: Transform
+ pos: -80.5,-31.5
+ parent: 2
+ - uid: 27536
+ components:
+ - type: Transform
+ pos: -84.5,-31.5
+ parent: 2
- proto: PlasmaWindoorSecureCommandLocked
entities:
- uid: 19957
@@ -134958,6 +137923,12 @@ entities:
parent: 2
- proto: PlasticFlapsClear
entities:
+ - uid: 1550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,-58.5
+ parent: 2
- uid: 19979
components:
- type: Transform
@@ -135057,25 +138028,28 @@ entities:
showEnts: False
occludes: True
ent: 19747
-- proto: PonderingOrb
- entities:
- - uid: 19990
- components:
- - type: Transform
- pos: -89.5,-72.5
- parent: 2
- proto: PortableFlasher
entities:
- - uid: 19991
+ - uid: 19632
components:
- type: Transform
- pos: -78.5,-27.5
+ pos: -76.5,-27.5
parent: 2
- uid: 19992
components:
- type: Transform
pos: -84.5,-20.5
parent: 2
+ - uid: 27455
+ components:
+ - type: Transform
+ pos: -91.5,-76.5
+ parent: 2
+ - uid: 27489
+ components:
+ - type: Transform
+ pos: -96.5,-73.5
+ parent: 2
- proto: PortableGeneratorJrPacman
entities:
- uid: 19993
@@ -135388,12 +138362,6 @@ entities:
- type: Transform
pos: -59.5,1.5
parent: 2
- - uid: 20042
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-64.5
- parent: 2
- proto: PosterLegitNoERP
entities:
- uid: 20043
@@ -135492,14 +138460,6 @@ entities:
- type: Transform
pos: -85.5,-24.5
parent: 2
-- proto: PosterLegitWorkForAFuture
- entities:
- - uid: 20057
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-62.5
- parent: 2
- proto: PottedPlant21
entities:
- uid: 19951
@@ -135580,11 +138540,6 @@ entities:
- type: Transform
pos: -2.5,-11.5
parent: 2
- - uid: 20069
- components:
- - type: Transform
- pos: -93.5,-59.5
- parent: 2
- uid: 20070
components:
- type: Transform
@@ -135677,11 +138632,6 @@ entities:
parent: 2
- proto: PottedPlantRandomPlastic
entities:
- - uid: 20088
- components:
- - type: Transform
- pos: -91.5,-59.5
- parent: 2
- uid: 20089
components:
- type: Transform
@@ -135949,11 +138899,6 @@ entities:
- type: Transform
pos: -35.5,-46.5
parent: 2
- - uid: 20122
- components:
- - type: Transform
- pos: -75.5,3.5
- parent: 2
- uid: 20123
components:
- type: Transform
@@ -136112,8 +139057,43 @@ entities:
rot: -1.5707963267948966 rad
pos: -44.5,-58.5
parent: 2
+ - uid: 20720
+ components:
+ - type: Transform
+ pos: -74.5,-21.5
+ parent: 2
+ - uid: 27307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-18.5
+ parent: 2
+ - uid: 27534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-35.5
+ parent: 2
+ - uid: 27537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-37.5
+ parent: 2
- proto: Poweredlight
entities:
+ - uid: 1175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-69.5
+ parent: 2
+ - uid: 2295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,-29.5
+ parent: 2
- uid: 19461
components:
- type: Transform
@@ -136126,6 +139106,12 @@ entities:
rot: 3.141592653589793 rad
pos: -81.5,-20.5
parent: 2
+ - uid: 19548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-64.5
+ parent: 2
- uid: 20149
components:
- type: Transform
@@ -136154,24 +139140,6 @@ entities:
- type: Transform
pos: -112.5,-29.5
parent: 2
- - uid: 20154
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.5,-63.5
- parent: 2
- - uid: 20155
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-65.5
- parent: 2
- - uid: 20156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-63.5
- parent: 2
- uid: 20157
components:
- type: Transform
@@ -136380,12 +139348,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -65.5,-24.5
parent: 2
- - uid: 20194
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,3.5
- parent: 2
- uid: 20195
components:
- type: Transform
@@ -137259,11 +140221,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -80.5,-33.5
parent: 2
- - uid: 20347
- components:
- - type: Transform
- pos: -77.5,-29.5
- parent: 2
- uid: 20348
components:
- type: Transform
@@ -138008,6 +140965,76 @@ entities:
rot: -1.5707963267948966 rad
pos: -82.5,-21.5
parent: 2
+ - uid: 24226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,-32.5
+ parent: 2
+ - uid: 25510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-73.5
+ parent: 2
+ - uid: 25770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-69.5
+ parent: 2
+ - uid: 27507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-74.5
+ parent: 2
+ - uid: 27508
+ components:
+ - type: Transform
+ pos: -88.5,-68.5
+ parent: 2
+ - uid: 27509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-66.5
+ parent: 2
+ - uid: 27510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-66.5
+ parent: 2
+ - uid: 27511
+ components:
+ - type: Transform
+ pos: -95.5,-63.5
+ parent: 2
+ - uid: 27513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-61.5
+ parent: 2
+ - uid: 27514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-58.5
+ parent: 2
+ - uid: 27575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-75.5
+ parent: 2
+ - uid: 27576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-69.5
+ parent: 2
- proto: PoweredlightExterior
entities:
- uid: 20477
@@ -138040,6 +141067,24 @@ entities:
parent: 2
- proto: PoweredLightPostSmall
entities:
+ - uid: 1525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-80.5
+ parent: 2
+ - uid: 1537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-75.5
+ parent: 2
+ - uid: 2576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -105.5,-69.5
+ parent: 2
- uid: 20482
components:
- type: Transform
@@ -138979,11 +142024,6 @@ entities:
- type: Transform
pos: -137.5,1.5
parent: 2
- - uid: 20645
- components:
- - type: Transform
- pos: -74.5,-21.5
- parent: 2
- uid: 20646
components:
- type: Transform
@@ -139116,6 +142156,20 @@ entities:
invokeCounter: 1
- type: DamageOnInteract
isDamageActive: False
+- proto: PoweredWarmSmallLight
+ entities:
+ - uid: 27314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,-72.5
+ parent: 2
+ - uid: 27415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,3.5
+ parent: 2
- proto: PrefilledSyringe
entities:
- uid: 20659
@@ -139135,36 +142189,154 @@ entities:
- type: Transform
pos: -83.5,-31.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 20662
components:
- type: Transform
pos: -89.5,-20.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 20663
components:
- type: Transform
pos: -96.5,-47.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 20664
components:
- type: Transform
pos: -50.5,-6.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 20665
components:
- type: Transform
pos: -136.5,-45.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 20666
components:
- type: Transform
pos: -59.5,-1.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- uid: 20667
components:
- type: Transform
pos: -51.5,2.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 27289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -89.5,-59.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ paper_copy: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- proto: PrinterDocFlatpack
entities:
- uid: 2452
@@ -139190,6 +142362,12 @@ entities:
parent: 2
- proto: Rack
entities:
+ - uid: 2044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-61.5
+ parent: 2
- uid: 19264
components:
- type: Transform
@@ -139305,11 +142483,6 @@ entities:
- type: Transform
pos: -37.5,0.5
parent: 2
- - uid: 20694
- components:
- - type: Transform
- pos: -80.5,-31.5
- parent: 2
- uid: 20695
components:
- type: Transform
@@ -139417,12 +142590,6 @@ entities:
- type: Transform
pos: -110.5,-31.5
parent: 2
- - uid: 20715
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,-61.5
- parent: 2
- uid: 20716
components:
- type: Transform
@@ -139438,11 +142605,6 @@ entities:
- type: Transform
pos: -116.5,-32.5
parent: 2
- - uid: 20720
- components:
- - type: Transform
- pos: -84.5,-22.5
- parent: 2
- uid: 20721
components:
- type: Transform
@@ -139458,12 +142620,28 @@ entities:
- type: Transform
pos: -46.5,-18.5
parent: 2
+ - uid: 22630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-28.5
+ parent: 2
- uid: 22715
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -78.5,-23.5
parent: 2
+ - uid: 25837
+ components:
+ - type: Transform
+ pos: -80.5,-22.5
+ parent: 2
+ - uid: 26884
+ components:
+ - type: Transform
+ pos: -80.5,-20.5
+ parent: 2
- proto: RadiationCollectorFullTank
entities:
- uid: 20724
@@ -140065,6 +143243,16 @@ entities:
rot: 3.141592653589793 rad
pos: -80.5,-19.5
parent: 2
+ - uid: 27504
+ components:
+ - type: Transform
+ pos: -87.5,-79.5
+ parent: 2
+ - uid: 27505
+ components:
+ - type: Transform
+ pos: -85.5,-80.5
+ parent: 2
- proto: RailingCorner
entities:
- uid: 20829
@@ -140207,6 +143395,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -91.5,17.5
parent: 2
+ - uid: 27309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-79.5
+ parent: 2
+ - uid: 27503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-80.5
+ parent: 2
- proto: RailingCornerSmall
entities:
- uid: 20853
@@ -140302,8 +143502,26 @@ entities:
rot: 3.141592653589793 rad
pos: -101.5,21.5
parent: 2
+ - uid: 27506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-79.5
+ parent: 2
- proto: RailingRound
entities:
+ - uid: 1573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-60.5
+ parent: 2
+ - uid: 1574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-60.5
+ parent: 2
- uid: 20869
components:
- type: Transform
@@ -140389,11 +143607,6 @@ entities:
parent: 2
- proto: RandomArtifactSpawner20
entities:
- - uid: 20884
- components:
- - type: Transform
- pos: -99.5,-61.5
- parent: 2
- uid: 20885
components:
- type: Transform
@@ -140689,16 +143902,6 @@ entities:
rot: 3.141592653589793 rad
pos: -102.5,-49.5
parent: 2
- - uid: 20945
- components:
- - type: Transform
- pos: -89.5,-58.5
- parent: 2
- - uid: 20946
- components:
- - type: Transform
- pos: -94.5,-58.5
- parent: 2
- proto: RandomSoakedCigarette
entities:
- uid: 20947
@@ -140718,11 +143921,6 @@ entities:
- type: Transform
pos: -34.5,10.5
parent: 2
- - uid: 20950
- components:
- - type: Transform
- pos: -51.5,-61.5
- parent: 2
- proto: RandomVendingDrinks
entities:
- uid: 20951
@@ -140755,8 +143953,18 @@ entities:
- type: Transform
pos: -49.5,-61.5
parent: 2
+ - uid: 26186
+ components:
+ - type: Transform
+ pos: -89.5,-70.5
+ parent: 2
- proto: RandomVendingSnacks
entities:
+ - uid: 10508
+ components:
+ - type: Transform
+ pos: -88.5,-70.5
+ parent: 2
- uid: 20957
components:
- type: Transform
@@ -140792,6 +144000,11 @@ entities:
- type: Transform
pos: -50.5,-61.5
parent: 2
+ - uid: 27570
+ components:
+ - type: Transform
+ pos: -77.5,6.5
+ parent: 2
- proto: RCD
entities:
- uid: 20964
@@ -140913,21 +144126,6 @@ entities:
- type: Transform
pos: -124.5,4.5
parent: 2
- - uid: 20985
- components:
- - type: Transform
- pos: -87.5,-72.5
- parent: 2
- - uid: 20986
- components:
- - type: Transform
- pos: -89.5,-70.5
- parent: 2
- - uid: 20987
- components:
- - type: Transform
- pos: -91.5,-72.5
- parent: 2
- uid: 20988
components:
- type: Transform
@@ -141417,11 +144615,6 @@ entities:
- type: Transform
pos: -93.5,-17.5
parent: 2
- - uid: 21080
- components:
- - type: Transform
- pos: -89.5,-74.5
- parent: 2
- uid: 21081
components:
- type: Transform
@@ -141573,6 +144766,126 @@ entities:
parent: 2
- proto: ReinforcedWindow
entities:
+ - uid: 1526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-72.5
+ parent: 2
+ - uid: 1538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-75.5
+ parent: 2
+ - uid: 1543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-58.5
+ parent: 2
+ - uid: 1565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-62.5
+ parent: 2
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: -86.5,-78.5
+ parent: 2
+ - uid: 2025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-66.5
+ parent: 2
+ - uid: 2033
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-62.5
+ parent: 2
+ - uid: 2048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-76.5
+ parent: 2
+ - uid: 2572
+ components:
+ - type: Transform
+ pos: -95.5,-72.5
+ parent: 2
+ - uid: 2573
+ components:
+ - type: Transform
+ pos: -95.5,-70.5
+ parent: 2
+ - uid: 2766
+ components:
+ - type: Transform
+ pos: -95.5,-71.5
+ parent: 2
+ - uid: 5358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-75.5
+ parent: 2
+ - uid: 5360
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,-75.5
+ parent: 2
+ - uid: 5361
+ components:
+ - type: Transform
+ pos: -93.5,-76.5
+ parent: 2
+ - uid: 5366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-76.5
+ parent: 2
+ - uid: 7198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-75.5
+ parent: 2
+ - uid: 7199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-77.5
+ parent: 2
+ - uid: 13721
+ components:
+ - type: Transform
+ pos: -96.5,-72.5
+ parent: 2
+ - uid: 17084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-66.5
+ parent: 2
+ - uid: 20986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-78.5
+ parent: 2
+ - uid: 20987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-77.5
+ parent: 2
- uid: 21107
components:
- type: Transform
@@ -143633,6 +146946,57 @@ entities:
- type: Transform
pos: -64.5,9.5
parent: 2
+ - uid: 23623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-62.5
+ parent: 2
+ - uid: 23652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-75.5
+ parent: 2
+ - uid: 23653
+ components:
+ - type: Transform
+ pos: -92.5,-77.5
+ parent: 2
+ - uid: 25513
+ components:
+ - type: Transform
+ pos: -87.5,-78.5
+ parent: 2
+ - uid: 25514
+ components:
+ - type: Transform
+ pos: -90.5,-73.5
+ parent: 2
+ - uid: 25526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-59.5
+ parent: 2
+ - uid: 25533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-58.5
+ parent: 2
+ - uid: 25537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-58.5
+ parent: 2
+ - uid: 25766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-66.5
+ parent: 2
- proto: RemoteSignaller
entities:
- uid: 21506
@@ -143645,11 +147009,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21612:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21719:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21611:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Paramedic Shutters
- type: NameModifier
@@ -143664,7 +147031,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
12588:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: ResearchAndDevelopmentServer
entities:
- uid: 21508
@@ -143684,14 +147052,6 @@ entities:
- type: Transform
pos: -88.09889,34.544617
parent: 2
-- proto: RifleStock
- entities:
- - uid: 21511
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.24458,-26.816572
- parent: 2
- proto: RobocopCircuitBoard
entities:
- uid: 21512
@@ -143735,14 +147095,6 @@ entities:
- type: Transform
pos: -17.5,-43.5
parent: 2
-- proto: SawImprov
- entities:
- - uid: 21518
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.46316,-26.14243
- parent: 2
- proto: ScrapFaxMachine
entities:
- uid: 21519
@@ -143862,6 +147214,19 @@ entities:
- type: Transform
pos: -86.534615,-34.61451
parent: 2
+- proto: SecBreachingHammer
+ entities:
+ - uid: 27471
+ components:
+ - type: Transform
+ pos: -80.5,-22.5
+ parent: 2
+ - uid: 27479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -80.5,-22.5
+ parent: 2
- proto: SecurityTechFab
entities:
- uid: 21541
@@ -143951,6 +147316,15 @@ entities:
- type: Transform
pos: -118.46625,-52.597813
parent: 2
+- proto: SheetGlass10
+ entities:
+ - uid: 26177
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: SheetPlasma
entities:
- uid: 21554
@@ -144046,6 +147420,15 @@ entities:
- type: Transform
pos: -82.4959,-20.496136
parent: 2
+- proto: SheetPlastic10
+ entities:
+ - uid: 26184
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: SheetSteel
entities:
- uid: 21574
@@ -144155,6 +147538,13 @@ entities:
- type: Transform
pos: -88.364365,-26.043812
parent: 2
+ - uid: 27295
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: SheetUranium
entities:
- uid: 21592
@@ -145063,9 +148453,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19400:
- - Pressed: Trigger
+ - - Pressed
+ - Trigger
2334:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Burn Chamber Vent
- type: NameModifier
@@ -145081,7 +148473,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2341:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Гермозатвор
- type: NameModifier
@@ -145095,11 +148488,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21696:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21695:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21633:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 21732
components:
- type: MetaData
@@ -145111,9 +148507,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
172:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
171:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Open Doors
- type: NameModifier
@@ -145126,9 +148524,11 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2388:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2389:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- uid: 21734
components:
- type: Transform
@@ -145138,11 +148538,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21723:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21722:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
21724:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: SignalButtonBridge
entities:
- uid: 21735
@@ -145154,11 +148557,14 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2358:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2355:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
2359:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- proto: SignalButtonDirectional
entities:
- uid: 21736
@@ -145170,7 +148576,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
147:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
- uid: 21737
components:
- type: Transform
@@ -145180,7 +148587,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
148:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
- uid: 21738
components:
- type: MetaData
@@ -145191,7 +148599,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2336:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Space Blast Doors
- type: NameModifier
@@ -145204,7 +148613,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
142:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
- uid: 21740
components:
- type: Transform
@@ -145213,7 +148623,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
143:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
- uid: 21741
components:
- type: Transform
@@ -145230,7 +148641,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19401:
- - Pressed: Trigger
+ - - Pressed
+ - Trigger
- type: Label
currentLabel: Воспламенитель
- type: NameModifier
@@ -145245,7 +148657,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2341:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Гермозатвор
- type: NameModifier
@@ -145259,7 +148672,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
150:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
- uid: 21745
components:
- type: Transform
@@ -145269,7 +148683,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
149:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
- uid: 21746
components:
- type: MetaData
@@ -145280,7 +148695,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2341:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Vent Chamber
- type: NameModifier
@@ -145295,7 +148711,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19401:
- - Pressed: Trigger
+ - - Pressed
+ - Trigger
- type: Label
currentLabel: Ignite Chamber
- type: NameModifier
@@ -145311,7 +148728,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2353:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Salvage Blast Doors
- type: NameModifier
@@ -145327,7 +148745,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2343:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Disposals Blast Doors
- type: NameModifier
@@ -145343,7 +148762,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2344:
- - Pressed: Toggle
+ - - Pressed
+ - Toggle
- type: Label
currentLabel: Disposals Blast Doors
- type: NameModifier
@@ -145358,7 +148778,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21797:
- - Pressed: Trigger
+ - - Pressed
+ - Trigger
- type: Label
currentLabel: Space Blast Doors
- type: NameModifier
@@ -145372,7 +148793,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
157:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
- uid: 21753
components:
- type: Transform
@@ -145382,7 +148804,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
156:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
- uid: 21754
components:
- type: Transform
@@ -145392,7 +148815,40 @@ entities:
- type: DeviceLinkSource
linkedPorts:
155:
- - Pressed: DoorBolt
+ - - Pressed
+ - DoorBolt
+ - uid: 27517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-71.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 27522:
+ - - Pressed
+ - Toggle
+ 27521:
+ - - Pressed
+ - Toggle
+ 27525:
+ - - Pressed
+ - Toggle
+ 27520:
+ - - Pressed
+ - Toggle
+ 27518:
+ - - Pressed
+ - Toggle
+ 27519:
+ - - Pressed
+ - Toggle
+ 27524:
+ - - Pressed
+ - Toggle
+ 27523:
+ - - Pressed
+ - Toggle
- proto: SignalSwitch
entities:
- uid: 21755
@@ -145404,14 +148860,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21624:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21623:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21622:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21756
components:
- type: Transform
@@ -145421,14 +148883,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21625:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21626:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21627:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21757
components:
- type: MetaData
@@ -145441,20 +148909,30 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2377:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2378:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
2375:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2376:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2363:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- type: Label
@@ -145474,59 +148952,95 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2364:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2365:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2393:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
2392:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
2367:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2369:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2370:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2371:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2391:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2366:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
2394:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2372:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2373:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2374:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2368:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2390:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
2395:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
2396:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
lastSignals:
Status: True
- type: Label
@@ -145545,11 +149059,15 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21635:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21640:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- type: Label
@@ -145569,23 +149087,35 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21637:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21638:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21632:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21636:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21639:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21634:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- type: Label
@@ -145600,8 +149130,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19456:
- - On: On
- - Off: Off
+ - - On
+ - On
+ - - Off
+ - Off
- uid: 21762
components:
- type: Transform
@@ -145611,8 +149143,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19452:
- - On: On
- - Off: Off
+ - - On
+ - On
+ - - Off
+ - Off
- uid: 21763
components:
- type: MetaData
@@ -145624,11 +149158,15 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21629:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21628:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- type: Label
currentLabel: Warehouse Shutters
- type: NameModifier
@@ -145644,14 +149182,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21678:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21679:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21680:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- uid: 21765
@@ -145664,14 +149208,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21675:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21720:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21674:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- uid: 21766
@@ -145685,14 +149235,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21676:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21721:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21677:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- uid: 21767
@@ -145708,14 +149264,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21686:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21712:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21685:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- type: Label
@@ -145731,14 +149293,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21697:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21698:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21699:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21769
components:
- type: Transform
@@ -145748,8 +149316,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19455:
- - On: On
- - Off: Off
+ - - On
+ - On
+ - - Off
+ - Off
- uid: 21770
components:
- type: Transform
@@ -145759,23 +149329,35 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2356:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2354:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2357:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2358:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
2355:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2359:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21771
components:
- type: Transform
@@ -145785,11 +149367,15 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21630:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
21631:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
- proto: SignalSwitchDirectional
entities:
- uid: 21772
@@ -145800,20 +149386,30 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21657:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21661:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21660:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21659:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21658:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21773
components:
- type: Transform
@@ -145825,17 +149421,25 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21643:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21644:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21645:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21646:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- uid: 21774
@@ -145849,17 +149453,25 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21612:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21719:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21611:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
20650:
- - On: On
- - Off: Off
+ - - On
+ - On
+ - - Off
+ - Off
- type: Label
currentLabel: Paramedic Shutters
- type: NameModifier
@@ -145875,14 +149487,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21647:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21648:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21649:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- uid: 21776
@@ -145898,14 +149516,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2382:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2384:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2383:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- type: Label
@@ -145920,14 +149544,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2349:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2347:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
2348:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21778
components:
- type: Transform
@@ -145937,14 +149567,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2346:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2342:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2335:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21779
components:
- type: Transform
@@ -145953,14 +149589,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21621:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21620:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21619:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21780
components:
- type: MetaData
@@ -145972,11 +149614,15 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21671:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21672:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- type: Label
currentLabel: Cell Shutters
- type: NameModifier
@@ -145990,11 +149636,15 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21673:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21670:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21782
components:
- type: Transform
@@ -146004,17 +149654,25 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21711:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21710:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21709:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21708:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21783
components:
- type: MetaData
@@ -146028,14 +149686,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2383:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2384:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2382:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- type: Label
@@ -146055,29 +149719,45 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21662:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21664:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21663:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21669:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21667:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21668:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21665:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21666:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- type: Label
@@ -146097,14 +149777,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2386:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2387:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
2385:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- type: Label
@@ -146122,29 +149808,45 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21692:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21691:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21690:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21693:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21694:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21687:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21688:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21689:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- type: Label
currentLabel: Privacy Shutters
- type: NameModifier
@@ -146158,14 +149860,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21613:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21615:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21614:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
- uid: 21788
components:
- type: Transform
@@ -146174,14 +149882,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21618:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21617:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21616:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
- uid: 21789
components:
- type: Transform
@@ -146193,11 +149907,15 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21641:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21642:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- uid: 21790
@@ -146211,41 +149929,65 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21653:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21654:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21656:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21652:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21700:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21701:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21704:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21703:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21702:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21707:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21706:
- - Off: Close
- - On: Open
+ - - Off
+ - Close
+ - - On
+ - Open
21705:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- uid: 21791
@@ -146258,14 +150000,20 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21651:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21655:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21650:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- uid: 21792
@@ -146276,8 +150024,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19453:
- - On: On
- - Off: Off
+ - - On
+ - On
+ - - Off
+ - Off
- uid: 21793
components:
- type: Transform
@@ -146287,8 +150037,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19457:
- - On: On
- - Off: Off
+ - - On
+ - On
+ - - Off
+ - Off
- uid: 21794
components:
- type: Transform
@@ -146297,8 +150049,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19458:
- - On: On
- - Off: Off
+ - - On
+ - On
+ - - Off
+ - Off
- uid: 21795
components:
- type: Transform
@@ -146308,8 +150062,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19454:
- - On: On
- - Off: Off
+ - - On
+ - On
+ - - Off
+ - Off
- uid: 21796
components:
- type: Transform
@@ -146321,17 +150077,25 @@ entities:
- type: DeviceLinkSource
linkedPorts:
21681:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21682:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21683:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
21684:
- - On: Open
- - Off: Close
+ - - On
+ - Open
+ - - Off
+ - Close
lastSignals:
Status: True
- proto: SignalTimer
@@ -146345,8 +150109,10 @@ entities:
- type: DeviceLinkSource
linkedPorts:
2337:
- - Start: Open
- - Timer: Close
+ - - Start
+ - Open
+ - - Timer
+ - Close
- proto: SignAnomaly
entities:
- uid: 21798
@@ -146400,6 +150166,13 @@ entities:
rot: 3.141592653589793 rad
pos: -57.5,-58.5
parent: 2
+- proto: SignBio
+ entities:
+ - uid: 19848
+ components:
+ - type: Transform
+ pos: -79.5,-27.5
+ parent: 2
- proto: SignBiohazardMed
entities:
- uid: 21805
@@ -147320,6 +151093,13 @@ entities:
rot: 1.5707963267948966 rad
pos: -52.5,-49.5
parent: 2
+- proto: SignMail
+ entities:
+ - uid: 23645
+ components:
+ - type: Transform
+ pos: -100.5,-58.5
+ parent: 2
- proto: SignMaterials
entities:
- uid: 21949
@@ -147342,28 +151122,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -89.5,-34.5
parent: 2
-- proto: SignMemetic
- entities:
- - uid: 21952
- components:
- - type: Transform
- pos: -88.5,-73.5
- parent: 2
- - uid: 21953
- components:
- - type: Transform
- pos: -90.5,-73.5
- parent: 2
- - uid: 21954
- components:
- - type: Transform
- pos: -90.5,-71.5
- parent: 2
- - uid: 21955
- components:
- - type: Transform
- pos: -88.5,-71.5
- parent: 2
- proto: SignMorgue
entities:
- uid: 21956
@@ -147732,6 +151490,20 @@ entities:
- type: Transform
pos: -27.5,-48.5
parent: 2
+- proto: SilverRing
+ entities:
+ - uid: 27540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.6996,-54.86216
+ parent: 2
+ - uid: 27541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.6996,-54.971535
+ parent: 2
- proto: Sink
entities:
- uid: 22012
@@ -147957,6 +151729,11 @@ entities:
parent: 2
- proto: SodaDispenser
entities:
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: -76.5,6.5
+ parent: 2
- uid: 22049
components:
- type: Transform
@@ -147974,6 +151751,27 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,-33.5
parent: 2
+- proto: SofaLeft
+ entities:
+ - uid: 27532
+ components:
+ - type: Transform
+ pos: -62.5,-22.5
+ parent: 2
+- proto: SofaMiddle
+ entities:
+ - uid: 22629
+ components:
+ - type: Transform
+ pos: -61.5,-22.5
+ parent: 2
+- proto: SofaRight
+ entities:
+ - uid: 27533
+ components:
+ - type: Transform
+ pos: -60.5,-22.5
+ parent: 2
- proto: SolarPanelPlasma
entities:
- uid: 22052
@@ -149745,6 +153543,20 @@ entities:
- type: Transform
pos: -49.5,-56.5
parent: 2
+- proto: SpaceTickSpawner
+ entities:
+ - uid: 1450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,35.5
+ parent: 2
+ - uid: 1501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,33.5
+ parent: 2
- proto: SpaceTickSpawnerNPC
entities:
- uid: 22395
@@ -149899,10 +153711,10 @@ entities:
parent: 2
- proto: SpawnMobShiva
entities:
- - uid: 22419
+ - uid: 10942
components:
- type: Transform
- pos: -80.5,-35.5
+ pos: -81.5,-31.5
parent: 2
- proto: SpawnMobSmile
entities:
@@ -149959,12 +153771,39 @@ entities:
- type: Transform
pos: -68.5,-31.5
parent: 2
-- proto: SpawnPointBlueShield
+- proto: SpawnPointBlueShieldEnsign
entities:
- - uid: 22429
+ - uid: 27456
components:
- type: Transform
- pos: -59.5,-3.5
+ pos: -86.5,-76.5
+ parent: 2
+- proto: SpawnPointBlueShieldOfficer
+ entities:
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: -89.5,-64.5
+ parent: 2
+ - uid: 27512
+ components:
+ - type: Transform
+ pos: -97.5,-70.5
+ parent: 2
+ - uid: 27571
+ components:
+ - type: Transform
+ pos: -97.5,-68.5
+ parent: 2
+ - uid: 27572
+ components:
+ - type: Transform
+ pos: -96.5,-68.5
+ parent: 2
+ - uid: 27573
+ components:
+ - type: Transform
+ pos: -96.5,-70.5
parent: 2
- proto: SpawnPointBorg
entities:
@@ -150504,18 +154343,6 @@ entities:
- type: Transform
pos: -61.5,-5.5
parent: 2
-- proto: SpawnPointReporter
- entities:
- - uid: 22526
- components:
- - type: Transform
- pos: -95.5,-63.5
- parent: 2
- - uid: 22527
- components:
- - type: Transform
- pos: -90.5,-62.5
- parent: 2
- proto: SpawnPointResearchAssistant
entities:
- uid: 22528
@@ -150741,6 +154568,13 @@ entities:
- type: Transform
pos: -53.5,-37.5
parent: 2
+- proto: SpearPlasma
+ entities:
+ - uid: 10589
+ components:
+ - type: Transform
+ pos: -58.580605,-9.512505
+ parent: 2
- proto: SpectralLocator
entities:
- uid: 22567
@@ -151062,12 +154896,6 @@ entities:
rot: 3.141592653589793 rad
pos: -108.5,-47.5
parent: 2
- - uid: 22616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-63.5
- parent: 2
- proto: Stool
entities:
- uid: 22617
@@ -151125,42 +154953,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -90.5,-46.5
parent: 2
- - uid: 22627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-56.5
- parent: 2
- - uid: 22628
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-55.5
- parent: 2
- - uid: 22629
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-54.5
- parent: 2
- - uid: 22630
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-55.5
- parent: 2
- - uid: 22631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-56.5
- parent: 2
- - uid: 22632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-54.5
- parent: 2
- uid: 22633
components:
- type: Transform
@@ -151317,11 +155109,6 @@ entities:
pos: -109.5,18.5
parent: 2
- type: Conveyed
- - uid: 22659
- components:
- - type: Transform
- pos: -58.5,-9.5
- parent: 2
- uid: 22660
components:
- type: Transform
@@ -151530,29 +155317,36 @@ entities:
parent: 2
- proto: SuitStorageBlueShield
entities:
- - uid: 22690
+ - uid: 810
components:
- type: Transform
- pos: -76.5,6.5
+ pos: -100.5,-74.5
+ parent: 2
+ - uid: 1913
+ components:
+ - type: Transform
+ pos: -98.5,-72.5
+ parent: 2
+ - uid: 25885
+ components:
+ - type: Transform
+ pos: -99.5,-74.5
+ parent: 2
+ - uid: 27447
+ components:
+ - type: Transform
+ pos: -98.5,-73.5
+ parent: 2
+ - uid: 27499
+ components:
+ - type: Transform
+ pos: -98.5,-74.5
+ parent: 2
+ - uid: 27500
+ components:
+ - type: Transform
+ pos: -89.5,-76.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: SuitStorageCaptain
entities:
- uid: 22691
@@ -151649,11 +155443,36 @@ entities:
parent: 2
- proto: SuitStorageHOS
entities:
- - uid: 22707
+ - uid: 19637
components:
- type: Transform
- pos: -77.5,-29.5
+ pos: -84.5,-31.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 19685
- proto: SuitStorageRD
entities:
- uid: 22708
@@ -151685,15 +155504,15 @@ entities:
parent: 2
- proto: SuitStorageSec
entities:
- - uid: 21547
+ - uid: 2273
components:
- type: Transform
- pos: -80.5,-22.5
+ pos: -78.5,-28.5
parent: 2
- - uid: 21567
+ - uid: 10430
components:
- type: Transform
- pos: -80.5,-20.5
+ pos: -78.5,-29.5
parent: 2
- uid: 22713
components:
@@ -151710,11 +155529,6 @@ entities:
- type: Transform
pos: -78.5,-20.5
parent: 2
- - uid: 26884
- components:
- - type: Transform
- pos: -80.5,-21.5
- parent: 2
- proto: SuitStorageWarden
entities:
- uid: 22717
@@ -153430,13 +157244,6 @@ entities:
- SurveillanceCameraSupply
nameSet: True
id: QM Bedroom
-- proto: SurveillanceCameraWirelessRouterEntertainment
- entities:
- - uid: 22888
- components:
- - type: Transform
- pos: -90.5,-61.5
- parent: 2
- proto: SurveillanceWirelessCameraAnchoredEntertainment
entities:
- uid: 22889
@@ -153493,20 +157300,6 @@ entities:
- SurveillanceCameraEntertainment
nameSet: True
id: PlasmaFire TV
-- proto: SurveillanceWirelessCameraMovableEntertainment
- entities:
- - uid: 22894
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-63.5
- parent: 2
- - uid: 22895
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,-61.5
- parent: 2
- proto: SynthesizerInstrument
entities:
- uid: 22896
@@ -153540,6 +157333,11 @@ entities:
parent: 2
- proto: Table
entities:
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: -96.5,-59.5
+ parent: 2
- uid: 22901
components:
- type: Transform
@@ -155042,6 +158840,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -45.5,-58.5
parent: 2
+ - uid: 25530
+ components:
+ - type: Transform
+ pos: -97.5,-59.5
+ parent: 2
- proto: TableCarpet
entities:
- uid: 23175
@@ -155130,12 +158933,6 @@ entities:
- type: Transform
pos: -67.5,-69.5
parent: 2
- - uid: 23191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,3.5
- parent: 2
- uid: 23192
components:
- type: Transform
@@ -155173,29 +158970,6 @@ entities:
parent: 2
- proto: TableReinforced
entities:
- - uid: 23198
- components:
- - type: Transform
- pos: -90.5,-64.5
- parent: 2
- - uid: 23199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-63.5
- parent: 2
- - uid: 23200
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-62.5
- parent: 2
- - uid: 23201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-64.5
- parent: 2
- uid: 23202
components:
- type: Transform
@@ -155497,6 +159271,30 @@ entities:
parent: 2
- proto: TableWood
entities:
+ - uid: 1534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,6.5
+ parent: 2
+ - uid: 2037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-72.5
+ parent: 2
+ - uid: 19547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,6.5
+ parent: 2
+ - uid: 22659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,3.5
+ parent: 2
- uid: 23255
components:
- type: Transform
@@ -156068,12 +159866,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -54.5,-44.5
parent: 2
- - uid: 23356
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-31.5
- parent: 2
- uid: 23357
components:
- type: Transform
@@ -156119,12 +159911,6 @@ entities:
- type: Transform
pos: -119.5,-76.5
parent: 2
- - uid: 23365
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-29.5
- parent: 2
- uid: 23366
components:
- type: Transform
@@ -156135,12 +159921,6 @@ entities:
- type: Transform
pos: -65.5,-70.5
parent: 2
- - uid: 23368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-30.5
- parent: 2
- uid: 23369
components:
- type: Transform
@@ -156168,6 +159948,22 @@ entities:
- type: Transform
pos: -88.5,34.5
parent: 2
+ - uid: 26176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -88.5,-73.5
+ parent: 2
+ - uid: 27043
+ components:
+ - type: Transform
+ pos: -58.5,-9.5
+ parent: 2
+ - uid: 27090
+ components:
+ - type: Transform
+ pos: -59.5,-9.5
+ parent: 2
- proto: TargetStrange
entities:
- uid: 23374
@@ -156322,6 +160118,50 @@ entities:
- type: Transform
pos: -87.5,-3.5
parent: 2
+- proto: TelescopicShield
+ entities:
+ - uid: 26178
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 26883
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 26900
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27042
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27275
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27282
+ components:
+ - type: Transform
+ parent: 26175
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: TeslaCoil
entities:
- uid: 23390
@@ -156400,11 +160240,6 @@ entities:
parent: 2
- proto: TintedWindow
entities:
- - uid: 23402
- components:
- - type: Transform
- pos: -91.5,-58.5
- parent: 2
- uid: 23403
components:
- type: Transform
@@ -156545,11 +160380,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -101.5,-39.5
parent: 2
- - uid: 23429
- components:
- - type: Transform
- pos: -93.5,-58.5
- parent: 2
- proto: ToiletDirtyWater
entities:
- uid: 23430
@@ -156738,6 +160568,59 @@ entities:
rot: -1.5707963267948966 rad
pos: -54.23502,3.603939
parent: 2
+- proto: Torch
+ entities:
+ - uid: 1867
+ components:
+ - type: Transform
+ pos: -102.45277,-62.47109
+ parent: 2
+- proto: TowelColorCentcom
+ entities:
+ - uid: 10634
+ components:
+ - type: Transform
+ parent: 10235
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: TowelColorMime
+ entities:
+ - uid: 27465
+ components:
+ - type: Transform
+ parent: 27464
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27467
+ components:
+ - type: Transform
+ parent: 27464
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27478
+ components:
+ - type: Transform
+ parent: 27475
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27482
+ components:
+ - type: Transform
+ parent: 27475
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27493
+ components:
+ - type: Transform
+ parent: 27490
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: TowelColorWhite
entities:
- uid: 23462
@@ -156997,6 +160880,12 @@ entities:
- type: InsideEntityStorage
- proto: TripleGlassAirlock
entities:
+ - uid: 22894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-56.5
+ parent: 2
- uid: 23496
components:
- type: Transform
@@ -157031,12 +160920,6 @@ entities:
- type: Transform
pos: -103.5,-0.5
parent: 2
- - uid: 23502
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-56.5
- parent: 2
- proto: TwoWayLever
entities:
- uid: 23503
@@ -157049,31 +160932,51 @@ entities:
- type: DeviceLinkSource
linkedPorts:
10665:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10666:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10709:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10717:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10649:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
26924:
- - Left: Open
- - Right: Open
- - Left: AutoClose
- - Right: AutoClose
- - Middle: Close
+ - - Left
+ - Open
+ - - Right
+ - Open
+ - - Left
+ - AutoClose
+ - - Right
+ - AutoClose
+ - - Middle
+ - Close
- type: Label
currentLabel: Front Desk Conveyor
- type: NameModifier
@@ -157088,89 +160991,152 @@ entities:
- type: DeviceLinkSource
linkedPorts:
20974:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10652:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10681:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10651:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10673:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10653:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10650:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10674:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10692:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10690:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10710:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10705:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10678:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10704:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10679:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10648:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10680:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10714:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10713:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10716:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10654:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
- type: Label
currentLabel: Salvage Conveyor
- type: NameModifier
@@ -157185,45 +161151,75 @@ entities:
- type: DeviceLinkSource
linkedPorts:
10684:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10720:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
20975:
- - Middle: Off
- - Right: Forward
- - Left: Reverse
+ - - Middle
+ - Off
+ - - Right
+ - Forward
+ - - Left
+ - Reverse
10691:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10689:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10686:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10682:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10688:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10711:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10685:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
- type: Label
currentLabel: Disposals Conveyor
- type: NameModifier
@@ -157238,85 +161234,145 @@ entities:
- type: DeviceLinkSource
linkedPorts:
10672:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
2351:
- - Left: Open
- - Right: Open
- - Middle: Close
+ - - Left
+ - Open
+ - - Right
+ - Open
+ - - Middle
+ - Close
2352:
- - Left: Open
- - Right: Open
- - Middle: Close
+ - - Left
+ - Open
+ - - Right
+ - Open
+ - - Middle
+ - Close
10662:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10661:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10664:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10663:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10656:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10660:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10657:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10677:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10675:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10676:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
2350:
- - Left: Open
- - Right: Open
- - Middle: Close
+ - - Left
+ - Open
+ - - Right
+ - Open
+ - - Middle
+ - Close
10659:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10669:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10670:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10658:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10668:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10667:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
- type: Label
currentLabel: Cargo Conveyor
- type: NameModifier
@@ -157331,23 +161387,37 @@ entities:
- type: DeviceLinkSource
linkedPorts:
10719:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10718:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10671:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
26923:
- - Left: Open
- - Right: Open
- - Middle: Close
- - Left: AutoClose
- - Right: AutoClose
+ - - Left
+ - Open
+ - - Right
+ - Open
+ - - Middle
+ - Close
+ - - Left
+ - AutoClose
+ - - Right
+ - AutoClose
- type: Label
currentLabel: Desk Conveyor
- type: NameModifier
@@ -157362,81 +161432,138 @@ entities:
- type: DeviceLinkSource
linkedPorts:
10712:
- - Right: Forward
- - Left: Reverse
- - Middle: Off
+ - - Right
+ - Forward
+ - - Left
+ - Reverse
+ - - Middle
+ - Off
10706:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10693:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10687:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10694:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10702:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10701:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10703:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10700:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10699:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10683:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10655:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10698:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10697:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10696:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10695:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10708:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10707:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
10715:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
+ - - Left
+ - Forward
+ - - Right
+ - Reverse
+ - - Middle
+ - Off
- type: Label
currentLabel: Space Conveyor
- type: NameModifier
@@ -157596,6 +161723,11 @@ entities:
- type: Transform
pos: -55.5,-40.5
parent: 2
+ - uid: 26185
+ components:
+ - type: Transform
+ pos: -88.5,-68.5
+ parent: 2
- proto: VendingMachineClothing
entities:
- uid: 23531
@@ -157608,6 +161740,13 @@ entities:
- type: Transform
pos: -52.5,-58.5
parent: 2
+- proto: VendingMachineClown
+ entities:
+ - uid: 27531
+ components:
+ - type: Transform
+ pos: -51.5,-61.5
+ parent: 2
- proto: VendingMachineCoffee
entities:
- uid: 23533
@@ -157635,6 +161774,11 @@ entities:
- type: Transform
pos: -127.5,-58.5
parent: 2
+ - uid: 27436
+ components:
+ - type: Transform
+ pos: -99.5,-69.5
+ parent: 2
- proto: VendingMachineCoffeeMigrateUnderwear
entities:
- uid: 23538
@@ -157722,6 +161866,13 @@ entities:
- type: Transform
pos: -96.5,-43.5
parent: 2
+- proto: VendingMachineMailDrobe
+ entities:
+ - uid: 1463
+ components:
+ - type: Transform
+ pos: -98.5,-61.5
+ parent: 2
- proto: VendingMachineMedical
entities:
- uid: 23551
@@ -157819,6 +161970,11 @@ entities:
- type: Transform
pos: -96.5,-35.5
parent: 2
+ - uid: 27557
+ components:
+ - type: Transform
+ pos: -89.5,-67.5
+ parent: 2
- proto: VendingMachineSecDrobe
entities:
- uid: 23565
@@ -157876,6 +162032,11 @@ entities:
parent: 2
- proto: VendingMachineTankDispenserEVA
entities:
+ - uid: 11580
+ components:
+ - type: Transform
+ pos: -77.5,-26.5
+ parent: 2
- uid: 23574
components:
- type: Transform
@@ -157901,6 +162062,11 @@ entities:
- type: Transform
pos: -37.5,-6.5
parent: 2
+ - uid: 25884
+ components:
+ - type: Transform
+ pos: -100.5,-72.5
+ parent: 2
- proto: VendingMachineTheater
entities:
- uid: 23579
@@ -157929,11 +162095,10 @@ entities:
parent: 2
- proto: VendingMachineWallMedical
entities:
- - uid: 23583
+ - uid: 19288
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -78.5,5.5
+ pos: -96.5,-67.5
parent: 2
- uid: 23584
components:
@@ -158127,6 +162292,24 @@ entities:
parent: 2
- proto: WallBasaltCobblebrick
entities:
+ - uid: 1393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-63.5
+ parent: 2
+ - uid: 2000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -83.5,-63.5
+ parent: 2
+ - uid: 2003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-64.5
+ parent: 2
- uid: 23615
components:
- type: Transform
@@ -158147,31 +162330,11 @@ entities:
- type: Transform
pos: -107.5,36.5
parent: 2
- - uid: 23619
- components:
- - type: Transform
- pos: -100.5,-61.5
- parent: 2
- uid: 23620
components:
- type: Transform
pos: -108.5,35.5
parent: 2
- - uid: 23621
- components:
- - type: Transform
- pos: -99.5,-60.5
- parent: 2
- - uid: 23622
- components:
- - type: Transform
- pos: -100.5,-60.5
- parent: 2
- - uid: 23623
- components:
- - type: Transform
- pos: -98.5,-67.5
- parent: 2
- uid: 23624
components:
- type: Transform
@@ -158218,11 +162381,6 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,11.5
parent: 2
- - uid: 23633
- components:
- - type: Transform
- pos: -94.5,-71.5
- parent: 2
- uid: 23634
components:
- type: Transform
@@ -158286,18 +162444,6 @@ entities:
- type: Transform
pos: -84.5,-65.5
parent: 2
- - uid: 23645
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -86.5,-63.5
- parent: 2
- - uid: 23646
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -86.5,-62.5
- parent: 2
- uid: 23647
components:
- type: Transform
@@ -158318,31 +162464,6 @@ entities:
- type: Transform
pos: -99.5,-52.5
parent: 2
- - uid: 23651
- components:
- - type: Transform
- pos: -93.5,-71.5
- parent: 2
- - uid: 23652
- components:
- - type: Transform
- pos: -98.5,-66.5
- parent: 2
- - uid: 23653
- components:
- - type: Transform
- pos: -94.5,-70.5
- parent: 2
- - uid: 23654
- components:
- - type: Transform
- pos: -85.5,-74.5
- parent: 2
- - uid: 23655
- components:
- - type: Transform
- pos: -85.5,-75.5
- parent: 2
- uid: 23656
components:
- type: Transform
@@ -158458,11 +162579,67 @@ entities:
parent: 2
- proto: WallReinforced
entities:
+ - uid: 899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-59.5
+ parent: 2
+ - uid: 925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-67.5
+ parent: 2
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: -97.5,-75.5
+ parent: 2
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: -97.5,-73.5
+ parent: 2
+ - uid: 8571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,-30.5
+ parent: 2
+ - uid: 8580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,-30.5
+ parent: 2
+ - uid: 10594
+ components:
+ - type: Transform
+ pos: -49.5,-3.5
+ parent: 2
+ - uid: 10853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-72.5
+ parent: 2
- uid: 20675
components:
- type: Transform
pos: -81.5,-21.5
parent: 2
+ - uid: 23583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-62.5
+ parent: 2
+ - uid: 23654
+ components:
+ - type: Transform
+ pos: -101.5,-72.5
+ parent: 2
- uid: 23676
components:
- type: Transform
@@ -159929,16 +164106,6 @@ entities:
- type: Transform
pos: -18.5,-47.5
parent: 2
- - uid: 23968
- components:
- - type: Transform
- pos: -90.5,-74.5
- parent: 2
- - uid: 23969
- components:
- - type: Transform
- pos: -87.5,-73.5
- parent: 2
- uid: 23970
components:
- type: Transform
@@ -160604,11 +164771,6 @@ entities:
- type: Transform
pos: -46.5,-7.5
parent: 2
- - uid: 24101
- components:
- - type: Transform
- pos: -49.5,-3.5
- parent: 2
- uid: 24102
components:
- type: Transform
@@ -160766,16 +164928,6 @@ entities:
- type: Transform
pos: -85.5,32.5
parent: 2
- - uid: 24132
- components:
- - type: Transform
- pos: -78.5,-28.5
- parent: 2
- - uid: 24133
- components:
- - type: Transform
- pos: -77.5,-28.5
- parent: 2
- uid: 24134
components:
- type: Transform
@@ -161243,11 +165395,6 @@ entities:
- type: Transform
pos: -91.5,-51.5
parent: 2
- - uid: 24226
- components:
- - type: Transform
- pos: -76.5,-28.5
- parent: 2
- uid: 24227
components:
- type: Transform
@@ -162554,11 +166701,6 @@ entities:
- type: Transform
pos: -22.5,-22.5
parent: 2
- - uid: 24470
- components:
- - type: Transform
- pos: -91.5,-71.5
- parent: 2
- uid: 24471
components:
- type: Transform
@@ -163921,8 +168063,85 @@ entities:
rot: -1.5707963267948966 rad
pos: -115.5,-29.5
parent: 2
+ - uid: 27306
+ components:
+ - type: Transform
+ pos: -74.5,-26.5
+ parent: 2
+ - uid: 27515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-71.5
+ parent: 2
+ - uid: 27516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-75.5
+ parent: 2
+ - uid: 27526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-71.5
+ parent: 2
+ - uid: 27527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-77.5
+ parent: 2
+ - uid: 27543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-77.5
+ parent: 2
+ - uid: 27544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-77.5
+ parent: 2
+ - uid: 27545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-71.5
+ parent: 2
+ - uid: 27546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-76.5
+ parent: 2
+ - uid: 27547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-71.5
+ parent: 2
+ - uid: 27548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-75.5
+ parent: 2
+ - uid: 27554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-76.5
+ parent: 2
- proto: WallReinforcedDiagonal
entities:
+ - uid: 1533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -101.5,-75.5
+ parent: 2
- uid: 24720
components:
- type: Transform
@@ -163946,8 +168165,154 @@ entities:
rot: -1.5707963267948966 rad
pos: -74.5,8.5
parent: 2
+ - uid: 27453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-71.5
+ parent: 2
- proto: WallReinforcedRust
entities:
+ - uid: 828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-67.5
+ parent: 2
+ - uid: 868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-66.5
+ parent: 2
+ - uid: 871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-65.5
+ parent: 2
+ - uid: 1383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-75.5
+ parent: 2
+ - uid: 1385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-78.5
+ parent: 2
+ - uid: 1396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-75.5
+ parent: 2
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: -74.5,-27.5
+ parent: 2
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: -74.5,-28.5
+ parent: 2
+ - uid: 1566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-63.5
+ parent: 2
+ - uid: 1575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-62.5
+ parent: 2
+ - uid: 1868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-72.5
+ parent: 2
+ - uid: 1869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-71.5
+ parent: 2
+ - uid: 2022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-71.5
+ parent: 2
+ - uid: 2026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-74.5
+ parent: 2
+ - uid: 2036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-79.5
+ parent: 2
+ - uid: 2045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-73.5
+ parent: 2
+ - uid: 12900
+ components:
+ - type: Transform
+ pos: -100.5,-69.5
+ parent: 2
+ - uid: 13649
+ components:
+ - type: Transform
+ pos: -76.5,-26.5
+ parent: 2
+ - uid: 17089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-69.5
+ parent: 2
+ - uid: 20155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-68.5
+ parent: 2
+ - uid: 20694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-30.5
+ parent: 2
+ - uid: 23621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-62.5
+ parent: 2
+ - uid: 23969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-75.5
+ parent: 2
+ - uid: 24470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-78.5
+ parent: 2
- uid: 24724
components:
- type: Transform
@@ -167916,125 +172281,11 @@ entities:
- type: Transform
pos: -100.5,-68.5
parent: 2
- - uid: 25510
- components:
- - type: Transform
- pos: -100.5,-69.5
- parent: 2
- - uid: 25511
- components:
- - type: Transform
- pos: -99.5,-69.5
- parent: 2
- - uid: 25512
- components:
- - type: Transform
- pos: -99.5,-70.5
- parent: 2
- - uid: 25513
- components:
- - type: Transform
- pos: -99.5,-71.5
- parent: 2
- - uid: 25514
- components:
- - type: Transform
- pos: -98.5,-71.5
- parent: 2
- - uid: 25515
- components:
- - type: Transform
- pos: -98.5,-72.5
- parent: 2
- - uid: 25516
- components:
- - type: Transform
- pos: -96.5,-72.5
- parent: 2
- - uid: 25517
- components:
- - type: Transform
- pos: -97.5,-72.5
- parent: 2
- - uid: 25518
- components:
- - type: Transform
- pos: -96.5,-73.5
- parent: 2
- - uid: 25519
- components:
- - type: Transform
- pos: -95.5,-73.5
- parent: 2
- - uid: 25520
- components:
- - type: Transform
- pos: -95.5,-74.5
- parent: 2
- - uid: 25521
- components:
- - type: Transform
- pos: -94.5,-74.5
- parent: 2
- - uid: 25522
- components:
- - type: Transform
- pos: -93.5,-74.5
- parent: 2
- - uid: 25523
- components:
- - type: Transform
- pos: -93.5,-75.5
- parent: 2
- - uid: 25524
- components:
- - type: Transform
- pos: -92.5,-75.5
- parent: 2
- - uid: 25525
- components:
- - type: Transform
- pos: -92.5,-76.5
- parent: 2
- - uid: 25526
- components:
- - type: Transform
- pos: -91.5,-76.5
- parent: 2
- - uid: 25527
- components:
- - type: Transform
- pos: -90.5,-76.5
- parent: 2
- - uid: 25528
- components:
- - type: Transform
- pos: -88.5,-76.5
- parent: 2
- - uid: 25529
- components:
- - type: Transform
- pos: -89.5,-76.5
- parent: 2
- - uid: 25530
- components:
- - type: Transform
- pos: -88.5,-77.5
- parent: 2
- - uid: 25531
- components:
- - type: Transform
- pos: -87.5,-77.5
- parent: 2
- uid: 25532
components:
- type: Transform
- pos: -86.5,-77.5
- parent: 2
- - uid: 25533
- components:
- - type: Transform
- pos: -85.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-67.5
parent: 2
- uid: 25534
components:
@@ -168051,11 +172302,6 @@ entities:
- type: Transform
pos: -77.5,-78.5
parent: 2
- - uid: 25537
- components:
- - type: Transform
- pos: -85.5,-78.5
- parent: 2
- uid: 25538
components:
- type: Transform
@@ -169138,12 +173384,8 @@ entities:
- uid: 25746
components:
- type: Transform
- pos: -91.5,-73.5
- parent: 2
- - uid: 25747
- components:
- - type: Transform
- pos: -90.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-70.5
parent: 2
- uid: 25748
components:
@@ -169155,21 +173397,11 @@ entities:
- type: Transform
pos: -110.5,-58.5
parent: 2
- - uid: 25750
- components:
- - type: Transform
- pos: -88.5,-74.5
- parent: 2
- uid: 25751
components:
- type: Transform
pos: -138.5,-21.5
parent: 2
- - uid: 25752
- components:
- - type: Transform
- pos: -88.5,-73.5
- parent: 2
- uid: 25753
components:
- type: Transform
@@ -169237,31 +173469,6 @@ entities:
- type: Transform
pos: -122.5,34.5
parent: 2
- - uid: 25766
- components:
- - type: Transform
- pos: -90.5,-71.5
- parent: 2
- - uid: 25767
- components:
- - type: Transform
- pos: -88.5,-70.5
- parent: 2
- - uid: 25768
- components:
- - type: Transform
- pos: -88.5,-71.5
- parent: 2
- - uid: 25769
- components:
- - type: Transform
- pos: -87.5,-71.5
- parent: 2
- - uid: 25770
- components:
- - type: Transform
- pos: -90.5,-70.5
- parent: 2
- uid: 25771
components:
- type: Transform
@@ -169615,12 +173822,6 @@ entities:
- type: Transform
pos: -107.5,-18.5
parent: 2
- - uid: 25837
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-27.5
- parent: 2
- uid: 25838
components:
- type: Transform
@@ -169833,6 +174034,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -116.5,-33.5
parent: 2
+ - uid: 27434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-64.5
+ parent: 2
+ - uid: 27551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-70.5
+ parent: 2
- proto: WallShuttle
entities:
- uid: 25877
@@ -169880,41 +174093,6 @@ entities:
- type: Transform
pos: -112.5,-28.5
parent: 2
- - uid: 25884
- components:
- - type: Transform
- pos: -94.5,-66.5
- parent: 2
- - uid: 25885
- components:
- - type: Transform
- pos: -89.5,-60.5
- parent: 2
- - uid: 25886
- components:
- - type: Transform
- pos: -93.5,-66.5
- parent: 2
- - uid: 25887
- components:
- - type: Transform
- pos: -89.5,-61.5
- parent: 2
- - uid: 25888
- components:
- - type: Transform
- pos: -96.5,-63.5
- parent: 2
- - uid: 25889
- components:
- - type: Transform
- pos: -96.5,-62.5
- parent: 2
- - uid: 25890
- components:
- - type: Transform
- pos: -96.5,-64.5
- parent: 2
- uid: 25891
components:
- type: Transform
@@ -171339,125 +175517,151 @@ entities:
parent: 2
- proto: WallSolidRust
entities:
- - uid: 26167
+ - uid: 923
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,-59.5
+ pos: -100.5,-58.5
parent: 2
- - uid: 26168
+ - uid: 939
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,-58.5
+ pos: -100.5,-60.5
+ parent: 2
+ - uid: 947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-61.5
+ parent: 2
+ - uid: 948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-63.5
+ parent: 2
+ - uid: 1128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-67.5
+ parent: 2
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: -98.5,-64.5
+ parent: 2
+ - uid: 1371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-72.5
+ parent: 2
+ - uid: 1381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-61.5
+ parent: 2
+ - uid: 1398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-62.5
+ parent: 2
+ - uid: 1404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-62.5
+ parent: 2
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: -97.5,-74.5
+ parent: 2
+ - uid: 1539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-74.5
+ parent: 2
+ - uid: 1570
+ components:
+ - type: Transform
+ pos: -100.5,-71.5
+ parent: 2
+ - uid: 2032
+ components:
+ - type: Transform
+ pos: -98.5,-66.5
+ parent: 2
+ - uid: 2035
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,-62.5
+ parent: 2
+ - uid: 2570
+ components:
+ - type: Transform
+ pos: -95.5,-67.5
+ parent: 2
+ - uid: 8433
+ components:
+ - type: Transform
+ pos: -96.5,-67.5
+ parent: 2
+ - uid: 10515
+ components:
+ - type: Transform
+ pos: -95.5,-69.5
+ parent: 2
+ - uid: 13342
+ components:
+ - type: Transform
+ pos: -97.5,-72.5
+ parent: 2
+ - uid: 13722
+ components:
+ - type: Transform
+ pos: -95.5,-68.5
+ parent: 2
+ - uid: 22895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-58.5
+ parent: 2
+ - uid: 23198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,-61.5
+ parent: 2
+ - uid: 23199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-62.5
+ parent: 2
+ - uid: 23201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-74.5
+ parent: 2
+ - uid: 23968
+ components:
+ - type: Transform
+ pos: -101.5,-71.5
parent: 2
- uid: 26169
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-58.5
- parent: 2
- - uid: 26170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-60.5
- parent: 2
- - uid: 26171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-60.5
- parent: 2
- - uid: 26172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-66.5
- parent: 2
- - uid: 26173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-59.5
- parent: 2
- - uid: 26174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-65.5
- parent: 2
- - uid: 26175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-60.5
- parent: 2
- - uid: 26176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-66.5
- parent: 2
- - uid: 26177
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-62.5
- parent: 2
- - uid: 26178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-66.5
- parent: 2
- - uid: 26179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-61.5
- parent: 2
- - uid: 26180
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-66.5
- parent: 2
- - uid: 26181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-63.5
- parent: 2
- - uid: 26182
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,-66.5
- parent: 2
- - uid: 26183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-64.5
- parent: 2
- - uid: 26184
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-66.5
- parent: 2
- - uid: 26185
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-60.5
- parent: 2
- - uid: 26186
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-74.5
parent: 2
- uid: 26187
components:
@@ -171552,12 +175756,6 @@ entities:
- type: Transform
pos: -66.5,-34.5
parent: 2
- - uid: 26205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-58.5
- parent: 2
- uid: 26206
components:
- type: Transform
@@ -174918,11 +179116,6 @@ entities:
- type: Transform
pos: -21.5,-8.5
parent: 2
- - uid: 26846
- components:
- - type: Transform
- pos: -107.5,-16.5
- parent: 2
- uid: 26847
components:
- type: Transform
@@ -175157,6 +179350,126 @@ entities:
- type: HitscanBatteryAmmoProvider
fireCost: 50
proto: BulletDisabler
+ - uid: 27227
+ components:
+ - type: Transform
+ parent: 26175
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 27274
+ components:
+ - type: Transform
+ parent: 26175
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 27285
+ components:
+ - type: Transform
+ parent: 26175
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 27294
+ components:
+ - type: Transform
+ parent: 26175
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 27296
+ components:
+ - type: Transform
+ parent: 26175
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
+ - uid: 27298
+ components:
+ - type: Transform
+ parent: 26175
+ - type: EnergyGunFireModes
+ currentFireMode:
+ state: disabler
+ name: energy-gun-disable
+ shotType: Hitscan
+ fireCost: 50
+ hitscanProto: BulletDisabler
+ projectileProto: null
+ - type: Item
+ heldPrefix: disabler
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: HitscanBatteryAmmoProvider
+ fireCost: 50
+ proto: BulletDisabler
- proto: WeaponEnergyGunTactical
entities:
- uid: 26878
@@ -175220,6 +179533,16 @@ entities:
- type: Transform
pos: -78.468895,-19.354034
parent: 2
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ gun_magazine: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: WeaponGunLaserCarbineSemi
entities:
- uid: 26881
@@ -175227,11 +179550,31 @@ entities:
- type: Transform
pos: -78.48918,-19.645702
parent: 2
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ gun_magazine: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- uid: 26882
components:
- type: Transform
pos: -78.48918,-19.488295
parent: 2
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ gun_magazine: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: WeaponIONRifle
entities:
- uid: 19263
@@ -175241,15 +179584,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: WeaponPistolDeagle
- entities:
- - uid: 26883
- components:
- - type: Transform
- pos: -80.4273,-31.252449
- parent: 2
- - type: ChamberMagazineAmmoProvider
- boltClosed: True
- proto: WeaponRevolverMatebaNew
entities:
- uid: 10437
@@ -175297,11 +179631,13 @@ entities:
parent: 2
- proto: WeaponSniperRepeater
entities:
- - uid: 26888
+ - uid: 21547
components:
- type: Transform
- pos: -78.462265,-30.783901
- parent: 2
+ parent: 20950
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 26889
components:
- type: Transform
@@ -175348,12 +179684,6 @@ entities:
pos: -21.5,-9.5
parent: 2
- type: CMExplosionEffect
- - uid: 26900
- components:
- - type: Transform
- pos: -107.5,-17.5
- parent: 2
- - type: CMExplosionEffect
- uid: 26901
components:
- type: Transform
@@ -175465,7 +179795,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -220838.84
+ secondsUntilStateChange: -240588.8
state: Opening
- type: Airlock
autoClose: False
@@ -175532,6 +179862,11 @@ entities:
parent: 2
- proto: WindoorSecureCargoLocked
entities:
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: -99.5,-58.5
+ parent: 2
- uid: 26923
components:
- type: Transform
@@ -175581,6 +179916,14 @@ entities:
rot: 3.141592653589793 rad
pos: -120.5,-25.5
parent: 2
+- proto: WindoorSecureExternalLocked
+ entities:
+ - uid: 25889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-73.5
+ parent: 2
- proto: WindoorSecureHeadOfPersonnelLocked
entities:
- uid: 26931
@@ -175629,7 +179972,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
20656:
- - DoorStatus: Toggle
+ - - DoorStatus
+ - Toggle
- uid: 26937
components:
- type: Transform
@@ -175641,7 +179985,8 @@ entities:
- type: DeviceLinkSource
linkedPorts:
19956:
- - DoorStatus: Close
+ - - DoorStatus
+ - Close
- proto: WindoorSecureSalvageLocked
entities:
- uid: 26938
@@ -175697,20 +180042,6 @@ entities:
rot: 3.141592653589793 rad
pos: -49.5,-56.5
parent: 2
-- proto: WindoorServiceLocked
- entities:
- - uid: 26946
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-65.5
- parent: 2
- - uid: 26947
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-61.5
- parent: 2
- proto: WindoorTheatreLocked
entities:
- uid: 26948
@@ -176154,6 +180485,28 @@ entities:
parent: 2
- proto: WindowReinforcedDirectional
entities:
+ - uid: 12634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-64.5
+ parent: 2
+ - uid: 19163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-63.5
+ parent: 2
+ - uid: 26181
+ components:
+ - type: Transform
+ pos: -59.5,-9.5
+ parent: 2
+ - uid: 26182
+ components:
+ - type: Transform
+ pos: -58.5,-9.5
+ parent: 2
- uid: 27027
components:
- type: Transform
@@ -176240,16 +180593,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -60.5,-9.5
parent: 2
- - uid: 27042
- components:
- - type: Transform
- pos: -58.5,-9.5
- parent: 2
- - uid: 27043
- components:
- - type: Transform
- pos: -59.5,-9.5
- parent: 2
- uid: 27044
components:
- type: Transform
@@ -176507,47 +180850,6 @@ entities:
rot: 3.141592653589793 rad
pos: -128.5,34.5
parent: 2
- - uid: 27090
- components:
- - type: Transform
- pos: -93.5,-60.5
- parent: 2
- - uid: 27091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-63.5
- parent: 2
- - uid: 27092
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,-64.5
- parent: 2
- - uid: 27093
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-64.5
- parent: 2
- - uid: 27094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-62.5
- parent: 2
- - uid: 27095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-63.5
- parent: 2
- - uid: 27096
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-64.5
- parent: 2
- uid: 27097
components:
- type: Transform
@@ -176696,6 +180998,12 @@ entities:
parent: 2
- proto: WoodenSupportBeam
entities:
+ - uid: 976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-62.5
+ parent: 2
- uid: 27123
components:
- type: Transform
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml
index 1963aec3c8..e9bfc51506 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml
@@ -4,7 +4,7 @@
ClothingBackpackDuffelAtmospherics: 2
ClothingBackpackSatchelAtmospherics: 2
ClothingBackpackAtmospherics: 2
- MaterialBag: 3 # Sunrise-edit
+ MaterialBagSunrise: 3 # Sunrise-edit
ClothingUniformJumpsuitAtmos: 3
ClothingUniformJumpskirtAtmos: 3
ClothingUniformJumpsuitAtmosCasual: 3
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
index 2df87ea421..57c781de11 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
@@ -1,17 +1,21 @@
- type: vendingMachineInventory
id: JaniDrobeInventory
startingInventory:
- ClothingUniformJumpsuitJanitor: 2
- ClothingUniformJumpskirtJanitor: 2
- ClothingHandsGlovesJanitor: 2
- ClothingShoesColorBlack: 2
- ClothingHeadHatPurplesoft: 2
- ClothingBeltJanitor: 2
- ClothingHeadsetService: 2
- ClothingOuterWinterJani: 2
- ClothingNeckScarfStripedPurple: 3
+ ClothingUniformJumpsuitJanitor: 2
+ ClothingUniformJumpskirtJanitor: 2
+ ClothingHandsGlovesJanitor: 2
+ ClothingShoesColorBlack: 2
+ ClothingHeadHatPurplesoft: 2
+ ClothingBeltJanitor: 2
+ ClothingHeadsetService: 2
+ ClothingOuterWinterJani: 2
+ ClothingNeckScarfStripedPurple: 3
contrabandInventory:
ToyFigurineJanitor: 1
- emaggedInventory:
- ClothingUniformJumpskirtJanimaid: 2
+ #Sunrise-start
+ ClothingUniformJumpskirtJanimaid: 1
ClothingUniformJumpskirtJanimaidmini: 1
+ emaggedInventory:
+ ClothingHandsTacticalMaidGloves: 1
+ ClothingUniformJumpskirtTacticalMaid: 1
+ #Sunrise-end
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml
index 4380c2467b..712a0af993 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml
@@ -33,4 +33,3 @@
ToyFigurineLawyer: 1
emaggedInventory:
CyberPen: 1
- ClothingUniformJumpsuitArmouredBlack: 1
diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml
index a18487ba3e..d5edf50ad1 100644
--- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml
+++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml
@@ -1,5 +1,5 @@
- type: entity
- parent: [Clothing, ContentsExplosionResistanceBase]
+ parent: [BackpackSounds, Clothing, ContentsExplosionResistanceBase] # Sunrise edit
id: ClothingBackpack
name: backpack
description: You wear this on your back and put items into it.
diff --git a/Resources/Prototypes/Entities/Clothing/Belt/waist_bags.yml b/Resources/Prototypes/Entities/Clothing/Belt/waist_bags.yml
index 81fddf379b..dce223cdcd 100644
--- a/Resources/Prototypes/Entities/Clothing/Belt/waist_bags.yml
+++ b/Resources/Prototypes/Entities/Clothing/Belt/waist_bags.yml
@@ -1,5 +1,5 @@
- type: entity
- parent: ClothingBeltStorageBase
+ parent: [BackpackSounds, ClothingBeltStorageBase] # Sunrise edit
id: ClothingBeltStorageWaistbag
name: leather waist bag
description: A leather waist bag meant for carrying small items.
diff --git a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml
index 1d8d38da79..9196a8d445 100644
--- a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml
+++ b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml
@@ -7,6 +7,13 @@
state: icon
- type: Clothing
slots: [gloves]
+ # Sunrise added start
+ equipSound:
+ path: /Audio/_Sunrise/Items/Equip/Gloves/sound1.ogg
+ params:
+ volume: -4
+ maxDistance: 3
+ # Sunrise added end
- type: Food
requiresSpecialDigestion: true
- type: Item
diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml
index 1190c67420..8fe550835b 100644
--- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml
+++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml
@@ -29,7 +29,7 @@
#Basic Helmet (Security Helmet)
- type: entity
- parent: [ClothingHeadHelmetArmoredBase, BaseSecurityContraband]
+ parent: [HelmetSounds, ClothingHeadHelmetArmoredBase, BaseSecurityContraband] # Sunrise edit
id: ClothingHeadHelmetBasic
name: helmet
description: Standard security gear. Protects the head from impacts.
@@ -45,7 +45,7 @@
#Mercenary Helmet
- type: entity
- parent: [ ClothingHeadHelmetArmoredBase, BaseMajorContraband ]
+ parent: [HelmetSounds, ClothingHeadHelmetArmoredBase, BaseMajorContraband] # Sunrise edit
id: ClothingHeadHelmetMerc
name: mercenary helmet
description: The combat helmet is commonly used by mercenaries, is strong, light and smells like gunpowder and the jungle.
@@ -57,7 +57,7 @@
#SWAT Helmet
- type: entity
- parent: [ClothingHeadHelmetBase, BaseSecurityContraband]
+ parent: [HelmetSounds, ClothingHeadHelmetBase, BaseSecurityContraband] # Sunrise edit
id: ClothingHeadHelmetSwat
name: SWAT helmet
description: An extremely robust helmet, commonly used by paramilitary forces. This one has the Nanotrasen logo emblazoned on the top.
@@ -93,7 +93,7 @@
#Light Riot Helmet
- type: entity
- parent: [ClothingHeadHelmetBase, BaseSecurityContraband]
+ parent: [HelmetSounds, ClothingHeadHelmetBase, BaseSecurityContraband] # Sunrise edit
id: ClothingHeadHelmetRiot
name: light riot helmet
description: It's a helmet specifically designed to protect against close range attacks.
@@ -112,7 +112,7 @@
#Bombsuit Helmet
- type: entity
- parent: ClothingHeadBase
+ parent: [HelmetSounds, ClothingHeadBase] # Sunrise edit
id: ClothingHeadHelmetBombSuit
name: bombsuit helmet
description: A heavy helmet designed to withstand the pressure generated by a bomb and any fragments the bomb may produce.
@@ -235,7 +235,7 @@
#Fire Helmet
- type: entity
- parent: ClothingHeadLightBase
+ parent: [HelmetSounds, ClothingHeadLightBase] # Sunrise edit
id: ClothingHeadHelmetFire
name: fire helmet
description: An atmos tech's best friend. Provides some heat resistance and looks cool.
@@ -459,7 +459,7 @@
#Justice Helmet
- type: entity
- parent: ClothingHeadHelmetBasic
+ parent: [HelmetSounds, ClothingHeadHelmetBasic] # Sunrise edit
id: ClothingHeadHelmetJustice
name: justice helm
description: Advanced security gear. Protects the station from ne'er-do-wells.
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
index 07aab9c9a1..ca6bdada4c 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
@@ -647,30 +647,6 @@
- type: HeldSpeedModifier
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSyndieElite
- #Sunrise-start
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- toggleable-clothing: !type:ContainerSlot
- - type: PowerCellSlot
- cellSlotId: cell_slot
- - type: ItemSlots
- slots:
- cell_slot:
- name: power-cell-slot-component-slot-name-default
- startingItem: PowerCellSyndicate
- whitelist:
- tags:
- - PowerCell
- - type: EnergyDomeGenerator
- damageEnergyDraw: 4
- domePrototype: EnergyDomeSmallRed
- - type: PowerCellDraw
- drawRate: 0
- useRate: 0
- - type: UseDelay
- delay: 10.0
- #Sunrise-end
#Syndicate Commander Hardsuit
- type: entity
diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml
index e2733b2468..b06c1f6831 100644
--- a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml
+++ b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml
@@ -3,6 +3,23 @@
parent: Clothing
id: ClothingShoesBase
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Shoes/pickup.ogg
+ params:
+ volume: -2
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Shoes/drop.ogg
+ params:
+ volume: -2
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Shoes/drop.ogg
+ params:
+ volume: -2
+ # Sunrise added end
- type: Clothing
slots:
- FEET
diff --git a/Resources/Prototypes/Entities/Clothing/base_clothing.yml b/Resources/Prototypes/Entities/Clothing/base_clothing.yml
index da9a7f8b1a..e6c21f9811 100644
--- a/Resources/Prototypes/Entities/Clothing/base_clothing.yml
+++ b/Resources/Prototypes/Entities/Clothing/base_clothing.yml
@@ -3,6 +3,11 @@
parent: BaseItem
id: Clothing
components:
+ - type: Clothing
+ equipSound:
+ collection: EquipSounds
+ params:
+ maxDistance: 3
- type: Item
size: Normal
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml
index 7ca34592dc..ba097dd881 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml
@@ -826,10 +826,9 @@
Blunt: 3 # Sunrise-edit
Caustic: 3 # Sunrise-edit
- type: MultiHandedItem
- # Sunrise-Edit
- #- type: Item
- # sprite: Mobs/Pets/Smile/smile.rsi
- # size: Huge
+ - type: Item
+ sprite: Mobs/Pets/Smile/smile.rsi
+ size: Huge
- type: SentienceTarget
flavorKind: station-event-random-sentience-flavor-slime
- type: MobPrice
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml
index d171320a1d..b408e212e1 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml
@@ -113,10 +113,6 @@
speechSounds: Slime
- type: TypingIndicator
proto: slime
- # Sunrise-start
- - type: Carriable
- - type: CanEscapeInventory
- # Sunrise-end
- type: entity
name: basic slime
@@ -161,6 +157,10 @@
Base: blue_adult_slime
Dead:
Base: blue_adult_slime_dead
+ # Sunrise-start
+ - type: Carriable
+ - type: CanEscapeInventory
+ # Sunrise-end
- type: entity
name: blue slime
@@ -178,6 +178,10 @@
- MindRoleGhostRoleTeamAntagonist
raffle:
settings: short
+# Sunrise-start
+ - type: Carriable
+ - type: CanEscapeInventory
+# Sunrise-end
- type: entity
name: green slime
@@ -201,6 +205,10 @@
Structural: 4
Caustic: 1
Poison: 4
+# Sunrise-start
+ - type: Carriable
+ - type: CanEscapeInventory
+# Sunrise-end
- type: entity
name: green slime
@@ -218,6 +226,10 @@
- MindRoleGhostRoleTeamAntagonist
raffle:
settings: short
+# Sunrise-start
+ - type: Carriable
+ - type: CanEscapeInventory
+# Sunrise-end
- type: entity
name: yellow slime
@@ -240,6 +252,10 @@
Blunt: 6
Structural: 4
Caustic: 4
+# Sunrise-start
+ - type: Carriable
+ - type: CanEscapeInventory
+# Sunrise-end
- type: entity
name: yellow slime
@@ -257,3 +273,7 @@
- MindRoleGhostRoleTeamAntagonist
raffle:
settings: short
+# Sunrise-start
+ - type: Carriable
+ - type: CanEscapeInventory
+# Sunrise-end
diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml
index 349d143630..83149e6328 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/base.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml
@@ -270,11 +270,6 @@
- type: CanEscapeInventory
- type: Mood
- type: CritHeartbeat
- heartbeatSound:
- path: /Audio/_Sunrise/Effects/heartbeat.ogg
- params:
- volume: -3
- loop: True
# Sunrise-End
- type: Barotrauma
damage:
diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml
index 6522437f20..fb0e4b4f42 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml
@@ -74,7 +74,7 @@
285: 0.4
- type: Wagging
- type: Inventory
- speciesId: reptilian
+ speciesId: Human
femaleDisplacements:
jumpsuit:
sizeMaps:
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml
index 548b1b9180..97dc820692 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml
@@ -86,6 +86,8 @@
- type: EmitSoundOnPickup
sound:
path: /Audio/_Sunrise/Items/Handling/drinkglass_pickup.ogg
+ params:
+ volume: -3
- type: EmitSoundOnDrop
sound:
path: /Audio/_Sunrise/Items/Handling/drinkglass_drop.ogg
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml
index 2e2f2979bc..c3204ccfd8 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml
@@ -127,6 +127,17 @@
id: FoodPlatePlastic
description: A large blue plastic plate, excellent for a birthday cake.
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Plastic/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Plastic/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Plastic/drop.ogg
+ # Sunrise added end
- type: Sprite
sprite: Objects/Consumable/Food/plates.rsi
state: plate-plastic
@@ -140,7 +151,7 @@
- type: entity
name: plastic plate
- parent: BaseItem
+ parent: [PlasticSounds, BaseItem] # Sunrise edit
id: FoodPlateSmallPlastic
description: A blue plastic plate, excellent for slices of birthday cake.
components:
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
index c01b07ef56..762b5728b6 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
@@ -280,7 +280,7 @@
- type: Extractable
grindableSolutionName: food
- type: DamageOnInteract
- damage:
+ damage:
types:
Heat: 4
Caustic: 4
@@ -307,7 +307,7 @@
volume: -5
- !type:DoActsBehavior
acts: [ "Destruction" ]
- - type: DamageOnHit
+ - type: DamageOnHit
damage:
types:
Blunt: 5 # The nettle will "wilt" after 5 hits.
@@ -1747,7 +1747,7 @@
- type: entity
name: glasstle
- parent: FoodProduceBase
+ parent: [GlassSounds, FoodProduceBase] # Sunrise edit
id: FoodGlasstle
description: A fragile crystal plant with lot of spiky thorns.
components:
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml
index 5e91d53847..bc9c817abc 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml
@@ -1,6 +1,6 @@
- type: entity
id: CigarCase
- parent: [ BaseStorageItem, BaseBagOpenClose ]
+ parent: [ CaseSounds, BaseStorageItem, BaseBagOpenClose ] # Sunrise edit
name: cigar case
description: A case for holding your cigars when you are not smoking them.
components:
diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml
index a797352bf9..250fdf3ed3 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml
@@ -1,6 +1,6 @@
- type: entity
abstract: true
- parent: BaseItem
+ parent: [GlassSounds, BaseItem] # Sunrise edit
id: SheetGlassBase
name: glass
description: A sheet of glass, used often on the station in various applications.
diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
index 2fcf70c9aa..82efb5a5ee 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
@@ -1,6 +1,6 @@
- type: entity
abstract: true
- parent: BaseItem
+ parent: [MetalSounds, BaseItem] # Sunrise edit
id: SheetMetalBase
description: A sheet of metal, used often on the station in various applications.
components:
@@ -242,4 +242,4 @@
components:
- type: Stack
lingering: true
- count: 0
\ No newline at end of file
+ count: 0
diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml
index aee5f7ff65..6bb343357f 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml
@@ -149,7 +149,7 @@
count: 0
- type: entity
- parent: SheetOtherBase
+ parent: [PlasticSounds, SheetOtherBase] # Sunrise edit
id: SheetPlastic
name: plastic
suffix: Full
diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml
index 6f98663ff5..1ad4250cea 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml
@@ -84,6 +84,17 @@
name: cloth
suffix: Full
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Leather/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Leather/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Leather/drop.ogg
+ # Sunrise added end
- type: Healing
damageContainers:
- Biological
@@ -173,6 +184,17 @@
name: durathread
suffix: Full
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Leather/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Leather/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Leather/drop.ogg
+ # Sunrise added end
- type: Stack
stackType: Durathread
baseLayer: base
@@ -232,6 +254,17 @@
name: wood
suffix: Full
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Wood/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Wood/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Wood/drop.ogg
+ # Sunrise added end
- type: Material
- type: PhysicalComposition
materialComposition:
diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml
index d603580951..e39693c7e3 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml
@@ -26,6 +26,20 @@
name: metal rod
suffix: Full
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Rod/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Rod/pickup.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Rod/pickup.ogg
+ - type: EmitSoundOnCollide
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Rod/pickup.ogg
+ # Sunrise added end
- type: PhysicalComposition
materialComposition:
Steel: 50 #Half of a regular steel sheet to reflect the crafting recipe
diff --git a/Resources/Prototypes/Entities/Objects/Misc/briefcases.yml b/Resources/Prototypes/Entities/Objects/Misc/briefcases.yml
index 77ddcf0d98..a781226bc2 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/briefcases.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/briefcases.yml
@@ -1,5 +1,5 @@
- type: entity
- parent: BaseStorageItem
+ parent: [CaseSounds, BaseStorageItem] # Sunrise edit
id: BriefcaseBase
description: Useful for carrying items in your hands.
abstract: true
diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml
index e997ce218a..7c53001eab 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml
@@ -5,6 +5,17 @@
description: A card necessary to access various areas aboard the station.
abstract: true
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/ID/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/ID/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/ID/drop.ogg
+ # Sunrise added end
- type: Sprite
sprite: Objects/Misc/id_cards.rsi
- type: Clothing
diff --git a/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml b/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml
index 9304d09eb6..75a1331191 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml
@@ -2,7 +2,7 @@
id: MedalCase
name: medal case
description: Case with medals.
- parent: [ BaseStorageItem, BaseBagOpenClose, BaseCommandContraband ]
+ parent: [ CaseSounds, BaseStorageItem, BaseBagOpenClose, BaseCommandContraband ] # Sunrise edit
components:
- type: Sprite
sprite: Objects/Storage/medalcase.rsi
diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
index 983cfaf0ae..f7afe20098 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
@@ -211,7 +211,7 @@
- type: entity
name: steel tile
- parent: FloorTileItemBase
+ parent: [MetalSounds, FloorTileItemBase]
id: FloorTileItemSteel
components:
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Objects/Misc/utensils.yml b/Resources/Prototypes/Entities/Objects/Misc/utensils.yml
index e735b2dcdd..8c49af8aeb 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/utensils.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/utensils.yml
@@ -10,7 +10,7 @@
- type: SpaceGarbage
- type: entity
- parent: UtensilBase
+ parent: [PlasticSounds, UtensilBase] # Sunrise edit
id: UtensilBasePlastic
abstract: true
components:
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml
index 82f91669cd..fd8728e988 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml
@@ -1,7 +1,7 @@
- type: entity
name: first aid kit
description: It's an emergency medical kit for those serious boo-boos.
- parent: BaseStorageItem
+ parent: [CaseSounds, BaseStorageItem] # Sunrise edit
id: Medkit
components:
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Objects/Tools/crowbars.yml b/Resources/Prototypes/Entities/Objects/Tools/crowbars.yml
index 5d63b2d1b5..00ab75dfe9 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/crowbars.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/crowbars.yml
@@ -45,9 +45,13 @@
- type: EmitSoundOnPickup
sound:
path: /Audio/_Sunrise/Items/Handling/crowbar_pickup.ogg
+ params:
+ volume: -2
- type: EmitSoundOnDrop
sound:
path: /Audio/Items/crowbar_drop.ogg
+ params:
+ volume: -2
# Sunrise end
# Standard (grey) Crowbar
diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml
index 0dd7db2432..7b33a4fb1a 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml
@@ -3,6 +3,28 @@
parent: BaseItem
id: GasTankBase
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/GasTanks/pickup.ogg
+ params:
+ volume: -2
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/GasTanks/drop.ogg
+ params:
+ volume: -2
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/GasTanks/drop.ogg
+ params:
+ volume: -2
+ - type: EmitSoundOnCollide
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/GasTanks/drop.ogg
+ params:
+ volume: -2
+ # Sunrise added end
- type: Sprite
sprite: Objects/Tanks/generic.rsi
state: icon
diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml
index c8d94bb48f..3f1de7eff1 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml
@@ -11,9 +11,13 @@
- type: EmitSoundOnPickup
sound:
path: /Audio/_Sunrise/Items/Handling/wirecutter_pickup.ogg
+ params:
+ volume: -2
- type: EmitSoundOnDrop
sound:
path: /Audio/Items/wirecutter_drop.ogg
+ params:
+ volume: -2
# Sunrise edit
- type: Tag
tags:
@@ -65,9 +69,13 @@
- type: EmitSoundOnPickup
sound:
path: /Audio/_Sunrise/Items/Handling/screwdriver_pickup.ogg
+ params:
+ volume: -2
- type: EmitSoundOnDrop
sound:
path: /Audio/Items/screwdriver_drop.ogg
+ params:
+ volume: -2
# Sunrise end
- type: Tag
tags:
@@ -117,9 +125,13 @@
- type: EmitSoundOnPickup
sound:
path: /Audio/_Sunrise/Items/Handling/wrench_pickup.ogg
+ params:
+ volume: -2
- type: EmitSoundOnDrop
sound:
path: /Audio/Items/wrench_drop.ogg
+ params:
+ volume: -2
# Sunrise end
- type: Tag
tags:
diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml
index e5b8e0464a..4f1f425b8f 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml
@@ -11,9 +11,13 @@
- type: EmitSoundOnPickup
sound:
path: /Audio/_Sunrise/Items/Handling/weldingtool_pickup.ogg
+ params:
+ volume: -2
- type: EmitSoundOnDrop
sound:
path: /Audio/Items/welder_drop.ogg
+ params:
+ volume: -2
# Sunrise end
- type: Sprite
sprite: Objects/Tools/welder.rsi
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml
index e3584701f0..b8ab68e98c 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml
@@ -88,7 +88,7 @@
components:
- type: BallisticAmmoProvider
proto: CartridgeCaselessRifle
- capacity: 99
+ capacity: 50 #sunrise-edit
- type: Sprite
sprite: Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/10x24.rsi
- type: MagazineVisuals
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml
index c3f33f35da..af1aba6040 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml
@@ -4,6 +4,17 @@
id: Stunbaton
description: A stun baton for incapacitating people with. Actively harming with this is considered bad tone.
components:
+ # Sunrise added start
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Stunbatons/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Stunbatons/pickup.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Stunbatons/pickup.ogg
+ # Sunrise added end
- type: Sprite
sprite: Objects/Weapons/Melee/stunbaton.rsi
layers:
diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml
index e50cd9aa93..a67dd19e95 100644
--- a/Resources/Prototypes/Entities/Stations/base.yml
+++ b/Resources/Prototypes/Entities/Stations/base.yml
@@ -109,7 +109,7 @@
- /Maps/_Sunrise/Ruins/oblomok_library.yml
- /Maps/_Sunrise/Ruins/oblomok_pectine_syndicate_shuttle.yml
- /Maps/_Sunrise/Ruins/Ruins_of_Free_Cargonia.yml
- - /Maps/_Sunrise/Ruins/Suspicious_Asteroid.yml
+ # - /Maps/_Sunrise/Ruins/Suspicious_Asteroid.yml
abandoned: !type:GridSpawnGroup
minimumDistance: 2000
maximumDistance: 3000
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml
index f29d2456d7..8194a9e609 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml
@@ -227,7 +227,7 @@
suffix: Salvage
components:
- type: Sprite
- sprite: Structures/Doors/Airlocks/Glass/cargo.rsi
+ sprite: _Sunrise/Structures/Doors/Airlocks/Glass/salvage.rsi #Sunrise-Resprite
- type: Wires
layoutId: AirlockCargo
diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml
index 669bf919b6..9dfb99a981 100644
--- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml
+++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml
@@ -10,6 +10,11 @@
description: "An always powered light."
suffix: Always powered
components:
+ # Sunrise start
+ - type: DamageOverlay
+ damagePopupType: SmallFloating
+ isStructure: true
+ # Sunrise end
- type: MeleeSound
soundGroups:
Brute:
diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml
index cde9d27b4f..5ca5db2af3 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml
@@ -2188,6 +2188,12 @@
components:
- type: VendingMachine
pack: TankDispenserEVAInventory
+ # Sunrise added start
+ soundVend:
+ path: /Audio/_Sunrise/Items/GasTanks/remove.ogg
+ params:
+ volume: -3
+ # Sunrise added end
- type: Sprite
sprite: Structures/Machines/VendingMachines/tankdispenser.rsi #TODO add visualiser for remaining tanks as layers
state: dispenser
@@ -2201,6 +2207,12 @@
components:
- type: VendingMachine
pack: TankDispenserEngineeringInventory
+ # Sunrise added start
+ soundVend:
+ path: /Audio/_Sunrise/Items/GasTanks/remove.ogg
+ params:
+ volume: -3
+ # Sunrise added end
- type: Sprite
sprite: Structures/Machines/VendingMachines/tankdispenser.rsi #TODO add visualiser for remaining tanks as layers
layers:
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
index f454c84480..aa507c421d 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
@@ -98,6 +98,16 @@
- type: GasPortable
- type: GasCanister
gasTankSlot:
+ # Sunrise added start
+ insertSound:
+ path: /Audio/_Sunrise/Items/GasTanks/insert.ogg
+ params:
+ volume: -3
+ ejectSound:
+ path: /Audio/_Sunrise/Items/GasTanks/remove.ogg
+ params:
+ volume: -3
+ # Sunrise added end
name: comp-gas-canister-slot-name-gas-tank
whitelist:
components:
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
index 84b25d1351..6348fe4b15 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
@@ -56,6 +56,16 @@
layer:
- MachineLayer
- type: EntityStorage
+ # Sunrise edit start
+ closeSound:
+ path: /Audio/_Sunrise/Structures/Closets/close.ogg
+ params:
+ volume: -1
+ openSound:
+ path: /Audio/_Sunrise/Structures/Closets/open.ogg
+ params:
+ volume: -1
+ # Sunrise edit end
- type: ContainerContainer
containers:
entity_storage: !type:Container
diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml
index e8e7404122..4f54ab6403 100644
--- a/Resources/Prototypes/GameRules/roundstart.yml
+++ b/Resources/Prototypes/GameRules/roundstart.yml
@@ -129,7 +129,7 @@
- type: GameRule
minPlayers: 20
- type: LoadMapRule
- mapPath: /Maps/Nonstations/nukieplanet.yml
+ mapPath: /Maps/_Sunrise/Nonstations/nukieplanet.yml
- type: AntagSelection
selectionTime: PrePlayerSpawn
definitions:
diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml
index 1ff3f1533e..3871321cf3 100644
--- a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml
+++ b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml
@@ -41,4 +41,11 @@
- !type:GroupLoadoutEffect
proto: JensenTimer
equipment:
- eyes: ClothingEyesGlassesJensen
\ No newline at end of file
+ eyes: ClothingEyesGlassesJensen
+
+# sunrise-start
+- type: loadout
+ id: GlassesStuttering
+ equipment:
+ eyes: ClothingEyesStuttering
+# sunrise-end
diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml
index 48358d9939..0048a8a8d0 100644
--- a/Resources/Prototypes/Loadouts/loadout_groups.yml
+++ b/Resources/Prototypes/Loadouts/loadout_groups.yml
@@ -71,6 +71,7 @@
- Glasses
- GlassesJamjar
- GlassesJensen
+ - GlassesStuttering
- type: loadoutGroup
id: GroupTankHarness
diff --git a/Resources/Prototypes/Procedural/Magnet/asteroid_ore_gens.yml b/Resources/Prototypes/Procedural/Magnet/asteroid_ore_gens.yml
index 661350f6de..60cafdf11f 100644
--- a/Resources/Prototypes/Procedural/Magnet/asteroid_ore_gens.yml
+++ b/Resources/Prototypes/Procedural/Magnet/asteroid_ore_gens.yml
@@ -11,6 +11,7 @@
OreUranium: 0.20
OreArtifactFragment: 0.10
OreBananium: 0.10
+ OreDiamond: 0.03 #Sunrise-Edit
- type: oreDunGen
id: OreIron
@@ -84,6 +85,14 @@
minGroupSize: 3
maxGroupSize: 6
+- type: oreDunGen #Sunrise-Start
+ id: OreDiamond
+ replacement: AsteroidRock
+ entity: AsteroidRockDiamond
+ count: 2
+ minGroupSize: 1
+ maxGroupSize: 3 #Sunrise-End
+
- type: oreDunGen
id: OreArtifactFragment
replacement: AsteroidRock
diff --git a/Resources/Prototypes/_Sunrise/Actions/borg_actions.yml b/Resources/Prototypes/_Sunrise/Actions/borg_actions.yml
index ee1655e610..7298321257 100644
--- a/Resources/Prototypes/_Sunrise/Actions/borg_actions.yml
+++ b/Resources/Prototypes/_Sunrise/Actions/borg_actions.yml
@@ -20,7 +20,7 @@
components:
- Cuffable
canTargetSelf: false
- useDelay: 15
+ useDelay: 9
checkCanAccess: true
range: 2
event: !type:BorgCuffedActionEvent
diff --git a/Resources/Prototypes/_Sunrise/Catalog/VendingMachines/advertisements.yml b/Resources/Prototypes/_Sunrise/Catalog/VendingMachines/advertisements.yml
index 2e9d636e67..7838e2f720 100644
--- a/Resources/Prototypes/_Sunrise/Catalog/VendingMachines/advertisements.yml
+++ b/Resources/Prototypes/_Sunrise/Catalog/VendingMachines/advertisements.yml
@@ -15,3 +15,9 @@
values:
prefix: advertisement-paintvend-
count: 7
+
+- type: localizedDataset
+ id: ATMAds
+ values:
+ prefix: advertisement-ATM-
+ count: 8
diff --git a/Resources/Prototypes/_Sunrise/Catalog/sponsor_uplink_catalog.yml b/Resources/Prototypes/_Sunrise/Catalog/sponsor_uplink_catalog.yml
index b7d48921a9..c2b6404662 100644
--- a/Resources/Prototypes/_Sunrise/Catalog/sponsor_uplink_catalog.yml
+++ b/Resources/Prototypes/_Sunrise/Catalog/sponsor_uplink_catalog.yml
@@ -1047,8 +1047,8 @@
# Plushies
- type: listing
- id: UplinkSunrisePlushieUunaMiira
- productEntity: PlushieUunaMiira
+ id: UplinkSunrisePlushieUunaKatsuhiro
+ productEntity: PlushieUunaKatsuhiro
cost:
Suntick: 4
categories:
diff --git a/Resources/Prototypes/_Sunrise/Catalog/uplink_catalog.yml b/Resources/Prototypes/_Sunrise/Catalog/uplink_catalog.yml
index 91f0c4ac0a..f68473dfe8 100644
--- a/Resources/Prototypes/_Sunrise/Catalog/uplink_catalog.yml
+++ b/Resources/Prototypes/_Sunrise/Catalog/uplink_catalog.yml
@@ -660,27 +660,27 @@
tags:
- AssaultOpsUplink
-- type: listing
- id: UplinkHardsuitSyndieCommander
- name: uplink-hardsuit-syndie-commander-name
- description: uplink-hardsuit-syndie-commander-desc
- icon: { sprite: /Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi, state: icon }
- productEntity: ClothingOuterHardsuitSyndieCommanderBiocode
- cost:
- Telecrystal: 12
- categories:
- - UplinkWearables
- conditions:
- - !type:ListingLimitedStockCondition
- stock: 1
- - !type:StoreWhitelistCondition
- whitelist:
- tags:
- - NukeOpsUplink
- - !type:BuyerWhitelistCondition
- blacklist:
- components:
- - SurplusBundle
+# - type: listing
+# id: UplinkHardsuitSyndieCommander
+# name: uplink-hardsuit-syndie-commander-name
+# description: uplink-hardsuit-syndie-commander-desc
+# icon: { sprite: /Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi, state: icon }
+# productEntity: ClothingOuterHardsuitSyndieCommanderBiocode
+# cost:
+# Telecrystal: 12
+# categories:
+# - UplinkWearables
+# conditions:
+# - !type:ListingLimitedStockCondition
+# stock: 1
+# - !type:StoreWhitelistCondition
+# whitelist:
+# tags:
+# - NukeOpsUplink
+# - !type:BuyerWhitelistCondition
+# blacklist:
+# components:
+# - SurplusBundle
- type: listing
id: UplinkHardsuitSyndieMedic
@@ -1159,9 +1159,9 @@
productEntity: WeaponMechCombatTeslaCannon
discountCategory: rareDiscounts
discountDownTo:
- Telecrystal: 4
+ Telecrystal: 10
cost:
- Telecrystal: 8
+ Telecrystal: 16
categories:
- UplinkMechs
conditions:
@@ -1346,9 +1346,9 @@
productEntity: EnergyDomeGeneratorPersonalSyndieBiocode
discountCategory: rareDiscounts
discountDownTo:
- Telecrystal: 10
+ Telecrystal: 8
cost:
- Telecrystal: 18
+ Telecrystal: 12
categories:
- UplinkWearables
conditions:
@@ -1366,7 +1366,7 @@
discountDownTo:
Telecrystal: 7
cost:
- Telecrystal: 12
+ Telecrystal: 10
categories:
- UplinkDisruption
conditions:
@@ -1457,20 +1457,20 @@
whitelist:
- Clown
-- type: listing
- id: UplinkSubMachineGunUzi
- name: uzi-name
- description: uzi-desc
- productEntity: UplinkSubMachineGunUzi
- discountCategory: usualDiscounts
- discountDownTo:
- Telecrystal: 8
- cost:
- Telecrystal: 12
- categories:
- - UplinkWeaponry
- conditions:
- - !type:BuyerJobCondition
+# - type: listing
+# id: UplinkSubMachineGunUzi
+# name: uzi-name
+# description: uzi-desc
+# productEntity: UplinkSubMachineGunUzi #Todo: Респрайт этого дерьма.
+# discountCategory: usualDiscounts
+# discountDownTo:
+# Telecrystal: 8
+# cost:
+# Telecrystal: 12
+# categories:
+# - UplinkWeaponry
+# conditions:
+# - !type:BuyerJobCondition
- type: listing
id: UplinkClusterSyndieMiniBomb
@@ -1502,6 +1502,24 @@
whitelist:
- AtmosphericTechnician
+- type: listing
+ id: uplinkCArmouredJumpsuit
+ name: uplink-armoured-jumpsuit-name
+ description: uplink-armoured-jumpsuit-desc
+ productEntity: ClothingUniformJumpsuitArmouredBlack
+ discountCategory: rareDiscounts
+ discountDownTo:
+ Telecrystal: 8
+ cost:
+ Telecrystal: 12
+ categories:
+ - UplinkWearables
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - AssaultOpsUplink
+
- type: listing
id: UplinkSyndicateCircuitBoard
name: uplink-syndicate-law-name
diff --git a/Resources/Prototypes/_Sunrise/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/_Sunrise/Entities/Clothing/Eyes/glasses.yml
index 54886e1c2d..747354d199 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Clothing/Eyes/glasses.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Clothing/Eyes/glasses.yml
@@ -109,3 +109,20 @@
- type: Clothing
sprite: Clothing/Eyes/Glasses/thermal.rsi
- type: ShowMindShieldIcons
+
+- type: entity
+ parent: ClothingEyesBase
+ id: ClothingEyesStuttering
+ name: stuttering glasses
+ description: Glasses that give the owner knowledge...or stuttering
+ components:
+ - type: Sprite
+ sprite: _Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi
+ - type: Clothing
+ sprite: _Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi
+ - type: AddAccentClothing
+ accent: StutteringAccent
+ matchRandomProb: 0.1
+ fourRandomProb: 0
+ threeRandomProb: 0
+ cutRandomProb: 0
diff --git a/Resources/Prototypes/_Sunrise/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/_Sunrise/Entities/Clothing/Head/helmets.yml
index 0aaf7ccb51..9ebbd73e95 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Clothing/Head/helmets.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Clothing/Head/helmets.yml
@@ -10,7 +10,7 @@
sprite: _Sunrise/Clothing/Head/Helmets/security_medic.rsi
- type: entity
- parent: ClothingHeadBase
+ parent: [HelmetSounds, ClothingHeadBase]
id: ClothingHeadHelmetPilot
name: security pilot's helmet
description: A thick pilot's helmet that provides good head protection.
@@ -22,9 +22,9 @@
- type: Armor
modifiers:
coefficients:
- Blunt: 0.85
- Slash: 0.85
- Piercing: 0.85
+ Blunt: 0.8
+ Slash: 0.8
+ Piercing: 0.95
- type: entity
parent: [ClothingHeadBase, BaseRestrictedContraband, BaseFoldable]
diff --git a/Resources/Prototypes/_Sunrise/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/_Sunrise/Entities/Clothing/Masks/masks.yml
index a798a904bc..b8b72fed64 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Clothing/Masks/masks.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Clothing/Masks/masks.yml
@@ -294,4 +294,4 @@
- type: Sprite
sprite: _Sunrise/Clothing/Mask/blueshield.rsi
- type: Clothing
- sprite: _Sunrise/Clothing/Mask/blueshield.rsig
+ sprite: _Sunrise/Clothing/Mask/blueshield.rsi
diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Consumable/Food/produce.yml
index 42d4b8b2f3..b1231912db 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Objects/Consumable/Food/produce.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Consumable/Food/produce.yml
@@ -139,7 +139,7 @@
name: glasscap
description: Glass doesn't grow on trees! It grows on mushrooms, of course.
id: GlassLog
- parent: ProduceBase
+ parent: [GlassSounds, ProduceBase] # Sunrise edit
components:
- type: Sprite
sprite: _Sunrise/Objects/Specific/Hydroponics/glasscap.rsi
diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Devices/exp_collars.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Devices/exp_collars.yml
index f0acb2028b..b4b01124b0 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Objects/Devices/exp_collars.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Devices/exp_collars.yml
@@ -9,7 +9,7 @@
unequipDelay: 20
- type: Explosive
explosionType: Default
- totalIntensity: 10.0
+ totalIntensity: 200
intensitySlope: 5
maxIntensity: 4
- type: ExplodeOnTrigger
diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Fun/toys.yml
index 4e7bda5fff..e88da03527 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Objects/Fun/toys.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Fun/toys.yml
@@ -29,9 +29,9 @@
state: plushie-hop
- type: entity
- id: PlushieUunaMiira
+ id: PlushieUunaKatsuhiro
parent: BasePlushie
- name: UunaMiira
+ name: Uuna Katsuhiro
description: A dark elf with a bright soul.
components:
- type: Sprite
@@ -42,6 +42,11 @@
collection: SQUEE
params:
volume: 5
+ - type: MeleeWeapon
+ soundHit:
+ collection: SQUEE
+ params:
+ volume: 5
- type: EmitSoundOnActivate
sound:
collection: SQUEE
@@ -51,7 +56,7 @@
sound:
path: /Audio/_Sunrise/Voice/Vulpkanin/dog_growl1.ogg
- type: UseDelay
- delay: 5
+ delay: 3
- type: entity
id: PlushieFour
diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/Medical/handheld_bso_crew_monitor.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/Medical/handheld_bso_crew_monitor.yml
new file mode 100644
index 0000000000..d8970bcd01
--- /dev/null
+++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/Medical/handheld_bso_crew_monitor.yml
@@ -0,0 +1,37 @@
+- type: entity
+ name: CommandFriend™ X-02
+ parent: [ BaseHandheldComputer, BaseRestrictedContraband ]
+ id: HandheldBSOCrewMonitor
+ description: Does not monitor the competence levels of command members.
+ components:
+# - type: Tag
+# tags:
+# - BSOBeltEquip
+ - type: Sprite
+ sprite: _Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi
+ state: scanner
+ - type: ActivatableUI
+ key: enum.CrewMonitoringUIKey.Key
+ - type: UserInterface
+ interfaces:
+ enum.CrewMonitoringUIKey.Key:
+ type: BSOCrewMonitoringBoundUserInterface
+ - type: CrewMonitoringConsole
+ - type: DeviceNetwork
+ deviceNetId: Wireless
+ receiveFrequencyId: CrewMonitor
+ - type: WirelessNetworkConnection
+ range: 500
+
+- type: entity
+ id: HandheldBSOCrewMonitorEmpty
+ parent: HandheldBSOCrewMonitor
+ suffix: Empty
+ components:
+# - type: Tag
+# tags:
+# - BSOBeltEquip
+ - type: ItemSlots
+ slots:
+ cell_slot:
+ name: power-cell-slot-component-slot-name-default
diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/Service/toys-syndi-clown.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/Service/toys-syndi-clown.yml
index 0bcb933be0..6932b5ea4e 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/Service/toys-syndi-clown.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/Service/toys-syndi-clown.yml
@@ -35,7 +35,13 @@
- Sidearm
- type: BasicEntityAmmoProvider
proto: FoodPieBananaCream
- capacity: 4
- count: 4
+ capacity: 3
+ count: 3
- type: RechargeBasicEntityAmmo
- rechargeCooldown: 3
+ rechargeCooldown: 5
+ rechargeSound:
+ path: /Audio/Items/bikehorn.ogg
+ - type: FactionWeaponBlocker
+ factions:
+ - Syndicate
+ alertText: Вы не истинный клоун.
\ No newline at end of file
diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml
index bc37d872ef..382ce58501 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml
@@ -20,13 +20,13 @@
slots:
gun_magazine:
name: Magazine
- startingItem: PowerCellSmall
+ startingItem: PowerCellHigh
insertSound: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
ejectSound: /Audio/Weapons/Guns/MagOut/batrifle_magout.ogg
whitelist:
tags:
- PowerCell
- - PowerCellSmall
+ - PowerCellHigh
- type: entity
name: LNT620 "Spark"
diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Weapons/Melee/telebaton.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Weapons/Melee/telebaton.yml
index 445a0b0196..3cca790e4f 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Objects/Weapons/Melee/telebaton.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Weapons/Melee/telebaton.yml
@@ -40,6 +40,15 @@
damage: 20
- type: UseDelay
delay: 0.4
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Telebatons/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Telebatons/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Telebatons/drop.ogg
- type: Item
sprite: _Sunrise/Objects/Weapons/Melee/telebaton.rsi
size: Small
diff --git a/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/Glass/access.yml b/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/Glass/access.yml
index c085b8bee5..f4eb632467 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/Glass/access.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/Glass/access.yml
@@ -22,7 +22,7 @@
- type: entity
id: DoubleGlassAirlockSalvageLocked
- parent: [ DoubleGlassAirlockMiner ]
+ parent: [ DoubleGlassAirlockSalvage ]
suffix: Salvage, Locked
components:
- type: ContainerFill
@@ -133,7 +133,7 @@
- type: entity
id: TripleGlassAirlockSalvageLocked
- parent: [ TripleGlassAirlockCargo ]
+ parent: [ TripleGlassAirlockSalvage ]
suffix: Salvage, Locked
components:
- type: ContainerFill
diff --git a/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/Glass/airlocks.yml b/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/Glass/airlocks.yml
index 28e6a8cfaa..d343348b84 100644
--- a/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/Glass/airlocks.yml
+++ b/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/Glass/airlocks.yml
@@ -188,7 +188,7 @@
sprite: _Sunrise/Structures/Doors/Airlocks/Glass/double_virology.rsi
- type: entity
- id: DoubleGlassAirlockMiner
+ id: DoubleGlassAirlockSalvage
parent: [ DoubleGlassAirlock, AirlockMiningGlass ]
suffix: Mining(Salvage)
components:
@@ -269,6 +269,14 @@
- type: Sprite
sprite: _Sunrise/Structures/Doors/Airlocks/Glass/triple_medical.rsi
+- type: entity
+ id: TripleGlassAirlockSalvage
+ parent: [ TripleGlassAirlock, AirlockMiningGlass ]
+ suffix: Mining(Salvage)
+ components:
+ - type: Sprite
+ sprite: _Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi
+
- type: entity
id: TripleGlassAirlockScience
parent: [ TripleGlassAirlock, AirlockScienceGlass ]
diff --git a/Resources/Prototypes/_Sunrise/Recipes/Lathes/devices.yml b/Resources/Prototypes/_Sunrise/Recipes/Lathes/devices.yml
index 14a77b77c0..1bf668f15e 100644
--- a/Resources/Prototypes/_Sunrise/Recipes/Lathes/devices.yml
+++ b/Resources/Prototypes/_Sunrise/Recipes/Lathes/devices.yml
@@ -15,8 +15,8 @@
materials:
Steel: 1000
Plastic: 400
- Silver: 100
- Diamond: 100
+ Silver: 300
+ Uranium: 300
- type: latheRecipe
id: BasicThermals
@@ -35,8 +35,8 @@
- Weapons
completetime: 30
materials:
- Steel: 1200
- Plasma: 750
+ Steel: 1400
+ Plasma: 800
Glass: 500
- type: latheRecipe
diff --git a/Resources/Prototypes/_Sunrise/Recipes/Reactions/fun.yml b/Resources/Prototypes/_Sunrise/Recipes/Reactions/fun.yml
index 4205e82225..f39c02f22b 100644
--- a/Resources/Prototypes/_Sunrise/Recipes/Reactions/fun.yml
+++ b/Resources/Prototypes/_Sunrise/Recipes/Reactions/fun.yml
@@ -11,5 +11,7 @@
amount: 2
Leporazine:
amount: 3
+ Wine:
+ amount: 3
products:
Aphrodesiac: 5
diff --git a/Resources/Prototypes/_Sunrise/Roles/Jobs/Blueshield/blueshield_ensign.yml b/Resources/Prototypes/_Sunrise/Roles/Jobs/Blueshield/blueshield_ensign.yml
index 59f1b93983..80c7fb72b0 100644
--- a/Resources/Prototypes/_Sunrise/Roles/Jobs/Blueshield/blueshield_ensign.yml
+++ b/Resources/Prototypes/_Sunrise/Roles/Jobs/Blueshield/blueshield_ensign.yml
@@ -54,4 +54,4 @@
gloves: ClothingHandsGlovesCombat
storage:
back:
- - HandheldCrewMonitor # Sunrise-TODO: Мониторинг командования.
+ - HandheldBSOCrewMonitor
diff --git a/Resources/Prototypes/_Sunrise/Sound/sound_helpers.yml b/Resources/Prototypes/_Sunrise/Sound/sound_helpers.yml
index 5f32825ef9..2a937730bc 100644
--- a/Resources/Prototypes/_Sunrise/Sound/sound_helpers.yml
+++ b/Resources/Prototypes/_Sunrise/Sound/sound_helpers.yml
@@ -19,12 +19,18 @@
- type: EmitSoundOnPickup
sound:
path: /Audio/_Sunrise/Items/Handling/multitool_pickup.ogg
+ params:
+ volume: -2
- type: EmitSoundOnDrop
sound:
path: /Audio/Items/multitool_drop.ogg
+ params:
+ volume: -2
- type: EmitSoundOnLand
sound:
path: /Audio/Items/multitool_drop.ogg
+ params:
+ volume: -2
- type: entity
id: DiskSounds
@@ -55,4 +61,110 @@
path: /Audio/_Sunrise/Items/Handling/ammobox_drop.ogg
- type: EmitSoundOnCollide
sound:
- path: /Audio/_Sunrise/Items/Handling/ammobox_drop.ogg
\ No newline at end of file
+ path: /Audio/_Sunrise/Items/Handling/ammobox_drop.ogg
+
+- type: entity
+ id: HelmetSounds
+ abstract: true
+ components:
+ - type: Clothing
+ equipSound:
+ path: /Audio/_Sunrise/Items/Equip/Helmets/sound1.ogg
+ params:
+ volume: -5
+ maxDistance: 3
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Helmets/pickup.ogg
+ params:
+ volume: -5
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Helmets/drop.ogg
+ params:
+ volume: -5
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Helmets/drop.ogg
+ params:
+ volume: -5
+
+- type: entity
+ id: BackpackSounds
+ abstract: true
+ components:
+ - type: Clothing
+ equipSound:
+ path: /Audio/_Sunrise/Items/Equip/Backpacks/sound1.ogg
+ params:
+ maxDistance: 3
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Backpacks/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Backpacks/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Backpacks/drop.ogg
+
+- type: entity
+ id: PlasticSounds
+ abstract: true
+ components:
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Plastic/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Plastic/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Plastic/drop.ogg
+
+- type: entity
+ id: GlassSounds
+ abstract: true
+ components:
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Glass/pickup.ogg
+ params:
+ volume: -2
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Glass/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Glass/drop.ogg
+
+- type: entity
+ id: MetalSounds
+ abstract: true
+ components:
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Metal/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Metal/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Metal/drop.ogg
+
+- type: entity
+ id: CaseSounds
+ abstract: true
+ components:
+ - type: Storage
+ storageOpenSound: /Audio/_Sunrise/Items/Cases/open.ogg
+ storageCloseSound: /Audio/_Sunrise/Items/Cases/close.ogg
+ - type: EmitSoundOnPickup
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Cases/pickup.ogg
+ - type: EmitSoundOnDrop
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Cases/drop.ogg
+ - type: EmitSoundOnLand
+ sound:
+ path: /Audio/_Sunrise/Items/Handling/Cases/drop.ogg
diff --git a/Resources/Prototypes/_Sunrise/SoundCollections/drink.yml b/Resources/Prototypes/_Sunrise/SoundCollections/drink.yml
new file mode 100644
index 0000000000..f2f7d251b9
--- /dev/null
+++ b/Resources/Prototypes/_Sunrise/SoundCollections/drink.yml
@@ -0,0 +1,8 @@
+- type: soundCollection
+ id: DrinkSounds
+ files:
+ - /Audio/_Sunrise/Effects/Liquid/Drink/sound1.ogg
+ - /Audio/_Sunrise/Effects/Liquid/Drink/sound2.ogg
+ - /Audio/_Sunrise/Effects/Liquid/Drink/sound3.ogg
+ - /Audio/_Sunrise/Effects/Liquid/Drink/sound4.ogg
+ - /Audio/_Sunrise/Effects/Liquid/Drink/sound5.ogg
diff --git a/Resources/Prototypes/_Sunrise/SoundCollections/misc.yml b/Resources/Prototypes/_Sunrise/SoundCollections/misc.yml
index b918c4d45b..b4a2e411a1 100644
--- a/Resources/Prototypes/_Sunrise/SoundCollections/misc.yml
+++ b/Resources/Prototypes/_Sunrise/SoundCollections/misc.yml
@@ -11,3 +11,8 @@
- /Audio/_Sunrise/Voice/Slime/блабл-бламп.ogg
- /Audio/_Sunrise/Voice/Slime/блюмп.ogg
- /Audio/_Sunrise/Voice/Slime/бламп.ogg
+
+- type: soundCollection
+ id: EquipSounds
+ files:
+ - /Audio/_Sunrise/Items/Equip/base_equip.ogg
diff --git a/Resources/Prototypes/_Sunrise/SoundCollections/solution_transfer.yml b/Resources/Prototypes/_Sunrise/SoundCollections/solution_transfer.yml
new file mode 100644
index 0000000000..39d65a9f57
--- /dev/null
+++ b/Resources/Prototypes/_Sunrise/SoundCollections/solution_transfer.yml
@@ -0,0 +1,8 @@
+- type: soundCollection
+ id: SolutionTransfer
+ files:
+ - /Audio/_Sunrise/Effects/Liquid/Transfer/sound1.ogg
+ - /Audio/_Sunrise/Effects/Liquid/Transfer/sound2.ogg
+ - /Audio/_Sunrise/Effects/Liquid/Transfer/sound3.ogg
+ - /Audio/_Sunrise/Effects/Liquid/Transfer/sound4.ogg
+ - /Audio/_Sunrise/Effects/Liquid/Transfer/sound5.ogg
diff --git a/Resources/Prototypes/_Sunrise/Structures/Computers/atm.yml b/Resources/Prototypes/_Sunrise/Structures/Computers/atm.yml
index baab581ec8..10dffd0ae7 100644
--- a/Resources/Prototypes/_Sunrise/Structures/Computers/atm.yml
+++ b/Resources/Prototypes/_Sunrise/Structures/Computers/atm.yml
@@ -44,16 +44,17 @@
- type: Pullable
- type: StaticPrice
price: 300
- - type: SpamEmitSoundRequirePower
- - type: SpamEmitSound
- minInterval: 30
- maxInterval: 90
- sound:
- collection: ArcadeNoise
- params:
- volume: -8
- maxDistance: 10
- variation: 0.05
+ # need new sounds
+ #- type: SpamEmitSoundRequirePower
+ #- type: SpamEmitSound
+ #minInterval: 30
+ #maxInterval: 90
+ #sound:
+ # collection: ArcadeNoise
+ # params:
+ # volume: -8
+ # maxDistance: 10
+ # variation: 0.05
- type: entity
id: ATMWallmountBase
@@ -93,7 +94,7 @@
- type: Computer
board: FPIATMComputerCircuitboard
- type: Advertise
- pack: BlockGameAds
+ pack: ATMAds
minimumWait: 120
maximumWait: 240
- type: SpeakOnUIClosed
diff --git a/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-arachnid.png b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-arachnid.png
new file mode 100644
index 0000000000..75a267c676
Binary files /dev/null and b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-arachnid.png differ
diff --git a/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-hamster.png b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-hamster.png
new file mode 100644
index 0000000000..24ae1f7198
Binary files /dev/null and b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-hamster.png differ
diff --git a/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-moth.png b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-moth.png
new file mode 100644
index 0000000000..703f92d70a
Binary files /dev/null and b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES-moth.png differ
diff --git a/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES.png b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES.png
new file mode 100644
index 0000000000..bd0ab3012f
Binary files /dev/null and b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/equipped-EYES.png differ
diff --git a/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/icon.png b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/icon.png
new file mode 100644
index 0000000000..2ae27c51d2
Binary files /dev/null and b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/icon.png differ
diff --git a/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/inhand-left.png b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/inhand-left.png
new file mode 100644
index 0000000000..bc21d1f558
Binary files /dev/null and b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/inhand-right.png b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/inhand-right.png
new file mode 100644
index 0000000000..4913fe4055
Binary files /dev/null and b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/meta.json b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/meta.json
new file mode 100644
index 0000000000..9cf7f4e7ac
--- /dev/null
+++ b/Resources/Textures/_Sunrise/Clothing/Eyes/Glasses/stuttering_glasses.rsi/meta.json
@@ -0,0 +1,38 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "By ASLEEP. Discrod - seeyoulater1",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-EYES",
+ "directions": 4
+ },
+ {
+ "name": "equipped-EYES-arachnid",
+ "directions": 4
+ },
+ {
+ "name": "equipped-EYES-hamster",
+ "directions": 4
+ },
+ {
+ "name": "equipped-EYES-moth",
+ "directions": 4
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/icon.png b/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/icon.png
new file mode 100644
index 0000000000..37f6561271
Binary files /dev/null and b/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/icon.png differ
diff --git a/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/meta.json b/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/meta.json
new file mode 100644
index 0000000000..f10d2bb0cd
--- /dev/null
+++ b/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/meta.json
@@ -0,0 +1,25 @@
+{
+ "version": 1,
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/ab4abf318f293a701754656dd4e9261eb70f8824#diff-9ab5c8a5e47ab7cfaeadd859a23e32b05de1fe839e99ea767fd7e340b6385d67 , modified by github.com/fqqf, Modified for BSO by Happyrobot33",
+ "states": [
+ {
+ "name": "scanner",
+ "directions": 1,
+ "delays": [
+ [
+ 0.4,
+ 0.4
+ ]
+ ]
+ },
+ {
+ "name": "icon",
+ "directions": 1
+ }
+ ]
+}
diff --git a/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/scanner.png b/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/scanner.png
new file mode 100644
index 0000000000..4d3b3feaa8
Binary files /dev/null and b/Resources/Textures/_Sunrise/Objects/Specific/Medical/handheld_bso_crewmonitor.rsi/scanner.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/assembly.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/assembly.png
new file mode 100644
index 0000000000..b2ba20450e
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/assembly.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/bolted_open_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/bolted_open_unlit.png
new file mode 100644
index 0000000000..14143143e9
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/bolted_open_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/bolted_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/bolted_unlit.png
new file mode 100644
index 0000000000..8e5d4b00e4
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/bolted_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closed.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closed.png
new file mode 100644
index 0000000000..5fc1982346
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closed.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closed_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closed_unlit.png
new file mode 100644
index 0000000000..f9c305d5f8
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closed_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closing.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closing.png
new file mode 100644
index 0000000000..f3178ac6e7
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closing.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closing_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closing_unlit.png
new file mode 100644
index 0000000000..1bd9eeead5
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/closing_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/deny_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/deny_unlit.png
new file mode 100644
index 0000000000..d9f4dbb13b
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/deny_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/emergency_open_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/emergency_open_unlit.png
new file mode 100644
index 0000000000..14143143e9
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/emergency_open_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/emergency_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/emergency_unlit.png
new file mode 100644
index 0000000000..09984cab03
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/emergency_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/meta.json b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/meta.json
new file mode 100644
index 0000000000..9671c30f18
--- /dev/null
+++ b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/meta.json
@@ -0,0 +1,443 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Sprited by Noychik for Sunrise Station",
+ "size": {
+ "x": 96,
+ "y": 96
+ },
+ "states": [
+ {
+ "name": "assembly",
+ "directions": 4
+ },
+ {
+ "name": "bolted_unlit",
+ "directions": 4
+ },
+ {
+ "name": "bolted_open_unlit"
+ },
+ {
+ "name": "closed",
+ "directions": 4
+ },
+ {
+ "name": "closed_unlit",
+ "directions": 4
+ },
+ {
+ "name": "open_unlit"
+ },
+ {
+ "name": "closing",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ]
+ ]
+ },
+ {
+ "name": "closing_unlit",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ]
+ ]
+ },
+ {
+ "name": "deny_unlit",
+ "directions": 4,
+ "delays": [
+ [
+ 1.2,
+ 1.2
+ ],
+ [
+ 1.2,
+ 1.2
+ ],
+ [
+ 1.2,
+ 1.2
+ ],
+ [
+ 1.2,
+ 1.2
+ ]
+ ]
+ },
+ {
+ "name": "open",
+ "directions": 4
+ },
+ {
+ "name": "opening",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ]
+ ]
+ },
+ {
+ "name": "opening_unlit",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ]
+ ]
+ },
+ {
+ "name": "panel_closing",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ]
+ ]
+ },
+ {
+ "name": "panel_closed"
+ },
+ {
+ "name": "panel_opening",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.07,
+ 0.07,
+ 0.07,
+ 0.2
+ ]
+ ]
+ },
+
+ {
+ "name": "panel_open",
+ "directions": 4
+ },
+ {
+ "name": "sparks",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ]
+ ]
+ },
+ {
+ "name": "sparks_broken",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ]
+ ]
+ },
+ {
+ "name": "sparks_damaged",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ]
+ ]
+ },
+ {
+ "name": "sparks_open",
+ "directions": 4
+ },
+ {
+ "name": "welded",
+ "directions": 4
+ },
+ {
+ "name": "emergency_unlit",
+ "directions": 4,
+ "delays": [
+ [
+ 1.2,
+ 1.2
+ ],
+ [
+ 1.2,
+ 1.2
+ ],
+ [
+ 1.2,
+ 1.2
+ ],
+ [
+ 1.2,
+ 1.2
+ ]
+ ]
+ },
+ {
+ "name": "emergency_open_unlit",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/open.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/open.png
new file mode 100644
index 0000000000..5087a3b881
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/open.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/open_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/open_unlit.png
new file mode 100644
index 0000000000..14143143e9
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/open_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/opening.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/opening.png
new file mode 100644
index 0000000000..7ad9a98bc0
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/opening.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/opening_unlit.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/opening_unlit.png
new file mode 100644
index 0000000000..90fa5834f1
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/opening_unlit.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_closed.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_closed.png
new file mode 100644
index 0000000000..bcacd76ce1
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_closed.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_closing.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_closing.png
new file mode 100644
index 0000000000..700a5a621b
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_closing.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_open.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_open.png
new file mode 100644
index 0000000000..857b16e481
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_open.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_opening.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_opening.png
new file mode 100644
index 0000000000..e5f7765b9a
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/panel_opening.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks.png
new file mode 100644
index 0000000000..5f310f120f
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_broken.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_broken.png
new file mode 100644
index 0000000000..7d204c6538
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_broken.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_damaged.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_damaged.png
new file mode 100644
index 0000000000..7d204c6538
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_damaged.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_open.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_open.png
new file mode 100644
index 0000000000..14143143e9
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/sparks_open.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/welded.png b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/welded.png
new file mode 100644
index 0000000000..eb8f7aff73
Binary files /dev/null and b/Resources/Textures/_Sunrise/Structures/Doors/Airlocks/Glass/triple_salvage.rsi/welded.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Machines/atm.rsi/base.png b/Resources/Textures/_Sunrise/Structures/Machines/atm.rsi/base.png
index f1fc8aa2c0..62f83b998f 100644
Binary files a/Resources/Textures/_Sunrise/Structures/Machines/atm.rsi/base.png and b/Resources/Textures/_Sunrise/Structures/Machines/atm.rsi/base.png differ
diff --git a/Resources/Textures/_Sunrise/Structures/Machines/atm.rsi/screen.png b/Resources/Textures/_Sunrise/Structures/Machines/atm.rsi/screen.png
index 1b5bf32b6b..3da7fa72b9 100644
Binary files a/Resources/Textures/_Sunrise/Structures/Machines/atm.rsi/screen.png and b/Resources/Textures/_Sunrise/Structures/Machines/atm.rsi/screen.png differ